X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Fctype%2Fisblank.c;h=cc29fa849048df2b19588b797efc92bc60e6b6bb;hp=0ad1ca1ab039bda704221e879dc61689be8b9295;hb=e883af7e93561cd536df68eaf837f523e3d2594b;hpb=3a92b78272cd3f0f413bb1cfc0c77deef49967fd diff --git a/functions/ctype/isblank.c b/functions/ctype/isblank.c index 0ad1ca1..cc29fa8 100644 --- a/functions/ctype/isblank.c +++ b/functions/ctype/isblank.c @@ -10,9 +10,11 @@ #ifndef REGTEST +#include + int isblank( int c ) { - return ( _PDCLIB_locale_info.ctype[c].flags & _PDCLIB_CTYPE_BLANK ); + return ( _PDCLIB_lconv.ctype[c].flags & _PDCLIB_CTYPE_BLANK ); } #endif