/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ #include #undef ispunct /* * @implemented */ int ispunct(int c) { return _isctype(c, _PUNCT); } #undef iswpunct /* * @implemented */ int iswpunct(wint_t c) { return iswctype(c, _PUNCT); }