aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/string/strstr.c4
-rw-r--r--src/wchar/wcsstr.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/string/strstr.c b/src/string/strstr.c
index 0c67153..d63628a 100644
--- a/src/string/strstr.c
+++ b/src/string/strstr.c
@@ -128,7 +128,7 @@ char* rawstrcasestr(const char* haystack, const char* needle)
/**
- * Finds the first occurrence of a substring
+ * Finds the first occurrence of a substring.
* This search is case sensitive.
*
* This is a GNU-compliant slibc extension. It was useful
@@ -155,7 +155,7 @@ void* memmem(const void* __haystack, size_t haystack_length,
/**
- * Finds the first occurrence of a substring
+ * Finds the first occurrence of a substring.
* This search is case insensitive.
*
* This is a slibc extension added because it was useful
diff --git a/src/wchar/wcsstr.c b/src/wchar/wcsstr.c
index 1a4786e..f54ff6e 100644
--- a/src/wchar/wcsstr.c
+++ b/src/wchar/wcsstr.c
@@ -141,7 +141,7 @@ wchar_t* rawwcscasestr(const wchar_t* haystack, const wchar_t* needle)
/**
- * Finds the first occurrence of a substring
+ * Finds the first occurrence of a substring.
* This search is case sensitive.
*
* This is a slibc extension added for completeness,
@@ -167,7 +167,7 @@ wchar_t* wmemmem(const wchar_t* haystack, size_t haystack_length,
/**
- * Finds the first occurrence of a substring
+ * Finds the first occurrence of a substring.
* This search is case insensitive.
*
* This is a slibc extension added because it was useful