/****************************************************************************** COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011. This file is part of LibMaxsi. LibMaxsi is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. LibMaxsi is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with LibMaxsi. If not, see . wctype.h Wide-character classification and mapping utilities ******************************************************************************/ #ifndef _WCTYPE_H #define _WCTYPE_H 1 #include __BEGIN_DECLS @include(wint_t.h) @include(wctrans_t.h) @include(locale_t.h) @include(WEOF.h) /* TODO: These are not implemented in libmaxsi/sortix yet. */ #ifndef SORTIX_UNIMPLEMENTED int iswalnum(wint_t); int iswalnum_l(wint_t, locale_t); int iswalpha(wint_t); int iswalpha_l(wint_t, locale_t); int iswblank(wint_t); int iswblank_l(wint_t, locale_t); int iswcntrl(wint_t); int iswcntrl_l(wint_t, locale_t); int iswctype(wint_t, wctype_t); int iswctype_l(wint_t, wctype_t, locale_t); int iswdigit(wint_t); int iswdigit_l(wint_t, locale_t); int iswgraph(wint_t); int iswgraph_l(wint_t, locale_t); int iswlower(wint_t); int iswlower_l(wint_t, locale_t); int iswprint(wint_t); int iswprint_l(wint_t, locale_t); int iswpunct(wint_t); int iswpunct_l(wint_t, locale_t); int iswspace(wint_t); int iswspace_l(wint_t, locale_t); int iswupper(wint_t); int iswupper_l(wint_t, locale_t); int iswxdigit(wint_t); int iswxdigit_l(wint_t, locale_t); wint_t towctrans(wint_t, wctrans_t); wint_t towctrans_l(wint_t, wctrans_t, locale_t); wint_t towlower(wint_t); wint_t towlower_l(wint_t, locale_t); wint_t towupper(wint_t); wint_t towupper_l(wint_t, locale_t); wctrans_t wctrans(const char *); wctrans_t wctrans_l(const char *, locale_t); wctype_t wctype(const char *); wctype_t wctype_l(const char *, locale_t); #endif __END_DECLS #endif