summaryrefslogtreecommitdiff
path: root/src/locale/strcasecmp_l.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/locale/strcasecmp_l.c')
-rw-r--r--src/locale/strcasecmp_l.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/locale/strcasecmp_l.c b/src/locale/strcasecmp_l.c
new file mode 100644
index 00000000..eea2f80b
--- /dev/null
+++ b/src/locale/strcasecmp_l.c
@@ -0,0 +1,7 @@
+#include <strings.h>
+#include <ctype.h>
+
+int strcasecmp_l(const char *l, const char *r, locale_t loc)
+{
+ return strcasecmp(l, r);
+}