2005-05-18 15:02:09 +00:00
|
|
|
/*
|
2010-11-03 21:46:47 +00:00
|
|
|
* Copyright 2005-2010 Haiku Inc. All Rights Reserved.
|
2005-05-18 15:02:09 +00:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _WCTYPE_H_
|
|
|
|
#define _WCTYPE_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include <wchar.h>
|
|
|
|
|
2010-07-23 23:13:00 +00:00
|
|
|
typedef int wctrans_t;
|
2005-05-18 15:02:09 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern int iswblank(wint_t wc);
|
2010-12-21 23:13:47 +00:00
|
|
|
|
2010-07-23 23:13:00 +00:00
|
|
|
extern wint_t towctrans(wint_t wc, wctrans_t transition);
|
2005-05-18 15:02:09 +00:00
|
|
|
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);
|
|
|
|
|
2006-03-14 23:17:32 +00:00
|
|
|
#ifdef __cplusplus
|
2005-05-18 15:02:09 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _WCTYPE_H_ */
|