]> pd.if.org Git - pdclib/blobdiff - functions/wctype/iswspace.c
dos2unix
[pdclib] / functions / wctype / iswspace.c
index 85e30f3e43388aa6bfdd8a09cd80d1b41b04f9da..501a30139f82d14e738f029b36b3b32e0ad64bb7 100644 (file)
@@ -1,28 +1,28 @@
-/* iswspace( 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 iswspace( wint_t wc )\r
-{\r
-    return iswctype( wc,  _PDCLIB_CTYPE_SPACE );\r
-}\r
-\r
-#endif\r
-\r
-#ifdef TEST\r
-#include "_PDCLIB_test.h"\r
-\r
-int main( void )\r
-{\r
-    TESTCASE(iswspace(L' '));\r
-    TESTCASE(iswspace(L'\t'));\r
-    TESTCASE(!iswspace(L'a'));\r
-    return TEST_RESULTS;\r
-}\r
-#endif\r
+/* iswspace( wint_t )
+
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#include <wctype.h>
+#ifndef REGTEST
+#include "_PDCLIB_locale.h"
+
+int iswspace( wint_t wc )
+{
+    return iswctype( wc,  _PDCLIB_CTYPE_SPACE );
+}
+
+#endif
+
+#ifdef TEST
+#include "_PDCLIB_test.h"
+
+int main( void )
+{
+    TESTCASE(iswspace(L' '));
+    TESTCASE(iswspace(L'\t'));
+    TESTCASE(!iswspace(L'a'));
+    return TEST_RESULTS;
+}
+#endif