]> pd.if.org Git - pdclib/blobdiff - functions/wctype/iswblank.c
PDCLIB-3 implement isw* functions
[pdclib] / functions / wctype / iswblank.c
diff --git a/functions/wctype/iswblank.c b/functions/wctype/iswblank.c
new file mode 100644 (file)
index 0000000..99fb35c
--- /dev/null
@@ -0,0 +1,29 @@
+/* iswblank( wint_t )\r
+\r
+   This file is part of the Public Domain C Library (PDCLib).\r
+   Permission is granted to use, modify, and / or redistribute at will.\r
+*/\r
+\r
+#include <wctype.h>\r
+#ifndef REGTEST\r
+#include <_PDCLIB_locale.h>\r
+\r
+int iswblank( wint_t wc )\r
+{\r
+    return iswctype( wc, _PDCLIB_CTYPE_BLANK );\r
+}\r
+\r
+#endif\r
+\r
+#ifdef TEST\r
+#include <_PDCLIB_test.h>\r
+\r
+int main( void )\r
+{\r
+    TESTCASE(iswblank(L' '));\r
+    TESTCASE(iswblank(L'\t'));\r
+    TESTCASE(!iswblank(L'\n'));\r
+    TESTCASE(!iswblank(L'a'));\r
+    return TEST_RESULTS;\r
+}\r
+#endif\r