/* * Copyright 2005-2010 Haiku Inc. All Rights Reserved. * Distributed under the terms of the MIT License. */ #ifndef _WCTYPE_H_ #define _WCTYPE_H_ #include typedef int wctrans_t; #ifdef __cplusplus extern "C" { #endif extern int iswblank(wint_t wc); extern wint_t towctrans(wint_t wc, wctrans_t transition); extern wint_t towlower(wint_t wc); extern wint_t towupper(wint_t wc); extern wctrans_t wctrans(const char *charClass); extern wctype_t wctype(const char *property); #ifdef __cplusplus } #endif #endif /* _WCTYPE_H_ */