X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fctype%2Fisblank.c;h=2ed5d0f0dee3f1877e3462ec862563668229d5db;hb=b1fc26afebd4d557ff89a44bc21767a8704c3809;hp=0ad1ca1ab039bda704221e879dc61689be8b9295;hpb=36b77c1eaf2ffddb76ef8ed2e6acd046682875c7;p=pdclib diff --git a/functions/ctype/isblank.c b/functions/ctype/isblank.c index 0ad1ca1..2ed5d0f 100644 --- a/functions/ctype/isblank.c +++ b/functions/ctype/isblank.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* isblank( int ) This file is part of the Public Domain C Library (PDCLib). @@ -10,9 +8,11 @@ #ifndef REGTEST +#include + int isblank( int c ) { - return ( _PDCLIB_locale_info.ctype[c].flags & _PDCLIB_CTYPE_BLANK ); + return ( _PDCLIB_lconv.ctype[c].flags & _PDCLIB_CTYPE_BLANK ); } #endif