X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fctype%2Fislower.c;h=689e65fb168b191c6cbc63627793c357fd60ee83;hb=d77b84be585e9ceaed1501579df5a4aec6a24a63;hp=d98069a6e0c2c8c6c17c4fd26b92f0ae62e3d0d3;hpb=36b77c1eaf2ffddb76ef8ed2e6acd046682875c7;p=pdclib diff --git a/functions/ctype/islower.c b/functions/ctype/islower.c index d98069a..689e65f 100644 --- a/functions/ctype/islower.c +++ b/functions/ctype/islower.c @@ -9,10 +9,11 @@ #include #ifndef REGTEST +#include <_PDCLIB_locale.h> int islower( int c ) { - return ( _PDCLIB_locale_info.ctype[c].flags & _PDCLIB_CTYPE_LOWER ); + return ( _PDCLIB_threadlocale()->_CType[c].flags & _PDCLIB_CTYPE_LOWER ); } #endif