X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fctype%2Fislower.c;fp=functions%2Fctype%2Fislower.c;h=db0649d1f0f28b754c78278adab855c8c48fec1d;hb=e883af7e93561cd536df68eaf837f523e3d2594b;hp=d98069a6e0c2c8c6c17c4fd26b92f0ae62e3d0d3;hpb=3a92b78272cd3f0f413bb1cfc0c77deef49967fd;p=pdclib.old diff --git a/functions/ctype/islower.c b/functions/ctype/islower.c index d98069a..db0649d 100644 --- a/functions/ctype/islower.c +++ b/functions/ctype/islower.c @@ -10,9 +10,11 @@ #ifndef REGTEST +#include + int islower( int c ) { - return ( _PDCLIB_locale_info.ctype[c].flags & _PDCLIB_CTYPE_LOWER ); + return ( _PDCLIB_lconv.ctype[c].flags & _PDCLIB_CTYPE_LOWER ); } #endif