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