/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ #include #undef isdigit int isdigit(int c) { return _isctype(c, _DIGIT); } #undef iswdigit int iswdigit(wint_t c) { return iswctype(c, _DIGIT); }