diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-10-10 16:55:10 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-10-10 16:55:10 +0200 |
commit | 780497b681486562587657dc0692c467efb8c43e (patch) | |
tree | 55b3ef2d84f874deb9cfc6ff876786a995c08527 /src/string | |
parent | on some systems, va_start and va_end contains { and }, respetively, therefore, if _PORTABLE_SOURCE or _LIBRARY_HEADER is defined, they should here too (diff) | |
download | slibc-780497b681486562587657dc0692c467efb8c43e.tar.gz slibc-780497b681486562587657dc0692c467efb8c43e.tar.bz2 slibc-780497b681486562587657dc0692c467efb8c43e.tar.xz |
m doc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/string/strstr.c | 4 |
1 files changed, 2 insertions, 2 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 |