X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=functions%2Fctype%2Ftolower.c;fp=functions%2Fctype%2Ftolower.c;h=d051ba5c67e7ce257c3409f58ede8785b1d77644;hb=cde52edd05b00cfbaee8d204d1f7faa1d6346eac;hp=530abf2a9e6bfcf7a94e69b3b3f8f243d53ebe1a;hpb=f55a1b46c818376556332a6475c0b70a7539fd68;p=fw%2Fpdclib diff --git a/functions/ctype/tolower.c b/functions/ctype/tolower.c index 530abf2..d051ba5 100644 --- a/functions/ctype/tolower.c +++ b/functions/ctype/tolower.c @@ -10,9 +10,11 @@ #ifndef REGTEST +#include + int tolower( int c ) { - return _PDCLIB_locale_info.ctype[c].lower; + return _PDCLIB_lconv.ctype[c].lower; } #endif