X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=functions%2Fctype%2Fisalpha.c;fp=functions%2Fctype%2Fisalpha.c;h=9dad397ea44798a7788932a6ec1a73ee60e56b8a;hb=cde52edd05b00cfbaee8d204d1f7faa1d6346eac;hp=2bde75570f7d4ab5255539f41c8a0a6838af0b15;hpb=f55a1b46c818376556332a6475c0b70a7539fd68;p=fw%2Fpdclib diff --git a/functions/ctype/isalpha.c b/functions/ctype/isalpha.c index 2bde755..9dad397 100644 --- a/functions/ctype/isalpha.c +++ b/functions/ctype/isalpha.c @@ -10,9 +10,11 @@ #ifndef REGTEST +#include + int isalpha( int c ) { - return ( _PDCLIB_locale_info.ctype[c].flags & _PDCLIB_CTYPE_ALPHA ); + return ( _PDCLIB_lconv.ctype[c].flags & _PDCLIB_CTYPE_ALPHA ); } #endif