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