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