summaryrefslogtreecommitdiff
path: root/src/ctype/iswlower.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ctype/iswlower.c')
-rw-r--r--src/ctype/iswlower.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ctype/iswlower.c b/src/ctype/iswlower.c
index 438fe26a..c754fb95 100644
--- a/src/ctype/iswlower.c
+++ b/src/ctype/iswlower.c
@@ -1,6 +1,14 @@
#include <wctype.h>
+#include "libc.h"
int iswlower(wint_t wc)
{
return towupper(wc) != wc || wc == 0xdf;
}
+
+int __iswlower_l(wint_t c, locale_t l)
+{
+ return iswlower(c);
+}
+
+weak_alias(__iswlower_l, iswlower_l);