From 780497b681486562587657dc0692c467efb8c43e Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 10 Oct 2015 16:55:10 +0200 Subject: m doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- include/string.h | 4 ++-- include/wchar.h | 4 ++-- src/string/strstr.c | 4 ++-- src/wchar/wcsstr.c | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/include/string.h b/include/string.h index 03c6acd..b851a76 100644 --- a/include/string.h +++ b/include/string.h @@ -954,7 +954,7 @@ char* rawstrcasestr(const char*, const char*) __GCC_ONLY(__attribute__((warn_unused_result, nonnull, returns_nonnull, pure))); /** - * 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 @@ -973,7 +973,7 @@ void* memcasemem(const void*, size_t, const void*, size_t) #if (defined(_GNU_SOURCE) || defined(_SLIBC_SOURCE)) && !defined(__PORTABLE) /** - * 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 diff --git a/include/wchar.h b/include/wchar.h index 2b757ca..9b57a7e 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -927,7 +927,7 @@ wchar_t* rawwcscasestr(const wchar_t*, const wchar_t*) __GCC_ONLY(__attribute__((warn_unused_result, nonnull, returns_nonnull, pure))); /** - * 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 @@ -946,7 +946,7 @@ wchar_t* wmemcasemem(const wchar_t*, size_t, const wchar_t*, size_t) #if (defined(_GNU_SOURCE) || defined(_SLIBC_SOURCE)) && !defined(__PORTABLE) /** - * 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, 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 -- cgit v1.2.3-70-g09d2