From 36bf56940af90baa478dd1258884291d5d213d10 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 6 Feb 2012 21:51:02 -0500 Subject: more locale_t interfaces (string stuff) and header updates this should be everything except for some functions where the non-_l version isn't even implemented yet (mainly some non-ISO-C wcs* functions). --- include/strings.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/strings.h') diff --git a/include/strings.h b/include/strings.h index aa35668c..345c6517 100644 --- a/include/strings.h +++ b/include/strings.h @@ -7,6 +7,7 @@ extern "C" { #define __NEED_size_t +#define __NEED_locale_t #include @@ -22,6 +23,9 @@ char *rindex (const char *, int); int strcasecmp (const char *, const char *); int strncasecmp (const char *, const char *, size_t); +int strcasecmp_l (const char *, const char *, locale_t); +int strncasecmp_l (const char *, const char *, size_t, locale_t); + #ifdef __cplusplus } #endif -- cgit v1.2.1