aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-10-10 16:55:10 +0200
committerMattias Andrée <maandree@operamail.com>2015-10-10 16:55:10 +0200
commit780497b681486562587657dc0692c467efb8c43e (patch)
tree55b3ef2d84f874deb9cfc6ff876786a995c08527
parenton some systems, va_start and va_end contains { and }, respetively, therefore, if _PORTABLE_SOURCE or _LIBRARY_HEADER is defined, they should here too (diff)
downloadslibc-780497b681486562587657dc0692c467efb8c43e.tar.gz
slibc-780497b681486562587657dc0692c467efb8c43e.tar.bz2
slibc-780497b681486562587657dc0692c467efb8c43e.tar.xz
m doc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--include/string.h4
-rw-r--r--include/wchar.h4
-rw-r--r--src/string/strstr.c4
-rw-r--r--src/wchar/wcsstr.c4
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