/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ #include #undef isprint int isprint(int c) { return _isctype(c,_BLANK | _PUNCT | _ALPHA | _DIGIT); } int iswprint(wint_t c) { return iswctype((unsigned short)c,_BLANK | _PUNCT | _ALPHA | _DIGIT); }