]> pd.if.org Git - pdclib/blobdiff - functions/ctype/isalpha.c
PDCLIB_scan: For %p, use E_long. This is a temporary change: Long term, we will be...
[pdclib] / functions / ctype / isalpha.c
index 2bde75570f7d4ab5255539f41c8a0a6838af0b15..9dad397ea44798a7788932a6ec1a73ee60e56b8a 100644 (file)
 
 #ifndef REGTEST
 
+#include <locale.h>
+
 int isalpha( int c )
 {
-    return ( _PDCLIB_locale_info.ctype[c].flags & _PDCLIB_CTYPE_ALPHA );
+    return ( _PDCLIB_lconv.ctype[c].flags & _PDCLIB_CTYPE_ALPHA );
 }
 
 #endif