]> pd.if.org Git - pdclib/blobdiff - functions/ctype/isblank.c
Removed SVN keyword tags.
[pdclib] / functions / ctype / isblank.c
index cc29fa849048df2b19588b797efc92bc60e6b6bb..883c0d85971d82f82b17f2605534ee0bb510aa7f 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* isblank( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -9,12 +7,11 @@
 #include <ctype.h>
 
 #ifndef REGTEST
-
-#include <locale.h>
+#include <_PDCLIB_locale.h>
 
 int isblank( int c )
 {
-    return ( _PDCLIB_lconv.ctype[c].flags & _PDCLIB_CTYPE_BLANK );
+    return ( _PDCLIB_threadlocale()->_CType[c].flags & _PDCLIB_CTYPE_BLANK );
 }
 
 #endif