X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Fctype%2Ftoupper.c;h=801c8ef55b18321cc5773b2d42bda2ff2561a2f2;hp=00cb203500b5b362a241cff15ece78a4834886cf;hb=e883af7e93561cd536df68eaf837f523e3d2594b;hpb=3a92b78272cd3f0f413bb1cfc0c77deef49967fd diff --git a/functions/ctype/toupper.c b/functions/ctype/toupper.c index 00cb203..801c8ef 100644 --- a/functions/ctype/toupper.c +++ b/functions/ctype/toupper.c @@ -10,9 +10,11 @@ #ifndef REGTEST +#include + int toupper( int c ) { - return _PDCLIB_locale_info.ctype[c].upper; + return _PDCLIB_lconv.ctype[c].upper; } #endif