summaryrefslogtreecommitdiff
path: root/src/string
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2014-07-02 21:38:54 -0400
committerRich Felker <dalias@aerifal.cx>2014-07-02 21:38:54 -0400
commit7424ac58b1f47adb03de55de5998c530aee91551 (patch)
tree4ea62b1dddc54fe2c901049c1914483c6265e6a0 /src/string
parentd89fdec51b5849ebdf8000ff1c2fb49878004f39 (diff)
downloadmusl-7424ac58b1f47adb03de55de5998c530aee91551.tar.gz
consolidate str[n]casecmp_l into str[n]casecmp source files
this is mainly done for consistency with the ctype functions and to declutter the src/locale directory.
Diffstat (limited to 'src/string')
-rw-r--r--src/string/strcasecmp.c8
-rw-r--r--src/string/strncasecmp.c8
2 files changed, 16 insertions, 0 deletions
diff --git a/src/string/strcasecmp.c b/src/string/strcasecmp.c
index 02fd5f8c..3cd5f2d0 100644
--- a/src/string/strcasecmp.c
+++ b/src/string/strcasecmp.c
@@ -1,5 +1,6 @@
#include <strings.h>
#include <ctype.h>
+#include "libc.h"
int strcasecmp(const char *_l, const char *_r)
{
@@ -7,3 +8,10 @@ int strcasecmp(const char *_l, const char *_r)
for (; *l && *r && (*l == *r || tolower(*l) == tolower(*r)); l++, r++);
return tolower(*l) - tolower(*r);
}
+
+int __strcasecmp_l(const char *l, const char *r, locale_t loc)
+{
+ return strcasecmp(l, r);
+}
+
+weak_alias(__strcasecmp_l, strcasecmp_l);
diff --git a/src/string/strncasecmp.c b/src/string/strncasecmp.c
index 24659721..3af53008 100644
--- a/src/string/strncasecmp.c
+++ b/src/string/strncasecmp.c
@@ -1,5 +1,6 @@
#include <strings.h>
#include <ctype.h>
+#include "libc.h"
int strncasecmp(const char *_l, const char *_r, size_t n)
{
@@ -8,3 +9,10 @@ int strncasecmp(const char *_l, const char *_r, size_t n)
for (; *l && *r && n && (*l == *r || tolower(*l) == tolower(*r)); l++, r++, n--);
return tolower(*l) - tolower(*r);
}
+
+int __strncasecmp_l(const char *l, const char *r, size_t n, locale_t loc)
+{
+ return strncasecmp(l, r, n);
+}
+
+weak_alias(__strncasecmp_l, strncasecmp_l);