]> pd.if.org Git - pdclib/blobdiff - functions/ctype/isspace.c
Whitespace cleanups.
[pdclib] / functions / ctype / isspace.c
index 346167efc22cad6909d575bb7a6b7a3db1478ed5..8cc08bf66b6e52595943ea44799f8d86526a2ae9 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* isspace( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -7,30 +5,21 @@
 */
 
 #include <ctype.h>
-#include <stdbool.h>
 
 #ifndef REGTEST
 
+#include <locale.h>
+
 int isspace( int c )
 {
-    switch ( c )
-    {
-        case ' ':
-        case '\f':
-        case '\n':
-        case '\r':
-        case '\t':
-        case '\v':
-            return true;
-        default:
-            return false;
-    }
+    return ( _PDCLIB_lconv.ctype[c].flags & _PDCLIB_CTYPE_SPACE );
 }
 
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {