aboutsummaryrefslogtreecommitdiffstats
path: root/include/wchar.h
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 /include/wchar.h
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>
Diffstat (limited to 'include/wchar.h')
-rw-r--r--include/wchar.h4
1 files changed, 2 insertions, 2 deletions
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,