]> pd.if.org Git - pdclib/blobdiff - functions/ctype/isblank.c
Comment cleanups.
[pdclib] / functions / ctype / isblank.c
index 0ad1ca1ab039bda704221e879dc61689be8b9295..2ed5d0f0dee3f1877e3462ec862563668229d5db 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* isblank( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -10,9 +8,11 @@
 
 #ifndef REGTEST
 
+#include <locale.h>
+
 int isblank( int c )
 {
-    return ( _PDCLIB_locale_info.ctype[c].flags & _PDCLIB_CTYPE_BLANK );
+    return ( _PDCLIB_lconv.ctype[c].flags & _PDCLIB_CTYPE_BLANK );
 }
 
 #endif