summaryrefslogtreecommitdiff
path: root/src/wctype/iswspace.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wctype/iswspace.c')
-rw-r--r--src/wctype/iswspace.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/wctype/iswspace.c b/src/wctype/iswspace.c
new file mode 100644
index 00000000..60bf723a
--- /dev/null
+++ b/src/wctype/iswspace.c
@@ -0,0 +1,28 @@
+#include <wctype.h>
+#include "wchar.h"
+#include "nonstd/assert.h"
+
+/** test whether a wide character is white-space **/
+int iswspace(wint_t wc)
+{
+ ASSERT_REPRESENTABLE(wc, WCHAR_MIN, WCHAR_MAX, "wchar_t", WEOF);
+
+ wctype_t space = wctype("space");
+ return iswctype(wc, space);
+}
+
+/***
+The fn(iswspace) function tests whether arg(wc) is a wide character in the class
+cclass(space) in the current locale.
+***/
+
+/* RETURN(NZ): arg(wc) is a white-space character */
+/* RETURN(0): arg(wc) is not a white-space character */
+
+/* UNSPECIFIED: - */
+/* IMPLEMENTATION: - */
+/* LOCALE: LC_CTYPE */
+
+/*
+STDC(199409)
+*/