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.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ctype/iswlower.c b/src/ctype/iswlower.c
new file mode 100644
index 00000000..0a568e77
--- /dev/null
+++ b/src/ctype/iswlower.c
@@ -0,0 +1,6 @@
+#include <wctype.h>
+
+int iswlower(wint_t wc)
+{
+ return towupper(wc) != wc;
+}