update for HEAD-2003050101
[reactos.git] / lib / ntdll / string / ctype.c
index 21d58cd..0261555 100644 (file)
@@ -372,6 +372,11 @@ int iswdigit(wint_t c)
    return (iswctype (c, _DIGIT));
 }
 
+int iswspace(wint_t c)
+{
+   return (iswctype (c, _SPACE));
+}
+
 int iswlower(wint_t c)
 {
    return (iswctype (c, _LOWER));