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/wchar | |
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 'src/wchar')
-rw-r--r-- | src/wchar/wcsstr.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |