summaryrefslogtreecommitdiff
path: root/string
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2016-11-16 14:18:32 -0500
committerZack Weinberg <zackw@panix.com>2016-11-16 14:18:32 -0500
commit7773556dfb2bf62f7b6deda66fa3821a3bcdbf3e (patch)
tree1a4fc8a06a6a9049d61cd43f30c73f46804e4643 /string
parentafcf3cd8ebff8fed79238a2d1b95338c4606b1ee (diff)
Correct comments in string.h re strcoll_l, strxfrm_l.
* string/string.h: Remove obsolete comment stating that strcoll_l and strxfrm_l have not yet been standardized.
Diffstat (limited to 'string')
-rw-r--r--string/string.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/string/string.h b/string/string.h
index 57deaa4191..b103e64912 100644
--- a/string/string.h
+++ b/string/string.h
@@ -154,15 +154,13 @@ extern size_t strxfrm (char *__restrict __dest,
__END_NAMESPACE_STD
#ifdef __USE_XOPEN2K8
-/* The following functions are equivalent to the both above but they
- take the locale they use for the collation as an extra argument.
- This is not standardsized but something like will come. */
# include <xlocale.h>
-/* Compare the collated forms of S1 and S2 using rules from L. */
+/* Compare the collated forms of S1 and S2, using sorting rules from L. */
extern int strcoll_l (const char *__s1, const char *__s2, __locale_t __l)
__THROW __attribute_pure__ __nonnull ((1, 2, 3));
-/* Put a transformation of SRC into no more than N bytes of DEST. */
+/* Put a transformation of SRC into no more than N bytes of DEST,
+ using sorting rules from L. */
extern size_t strxfrm_l (char *__dest, const char *__src, size_t __n,
__locale_t __l) __THROW __nonnull ((2, 4));
#endif