X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Fctype%2Ftolower.c;h=d051ba5c67e7ce257c3409f58ede8785b1d77644;hp=530abf2a9e6bfcf7a94e69b3b3f8f243d53ebe1a;hb=e883af7e93561cd536df68eaf837f523e3d2594b;hpb=3a92b78272cd3f0f413bb1cfc0c77deef49967fd 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