haiku/headers/posix/wctype.h

31 lines
549 B
C

/*
* Copyright 2005-2010 Haiku Inc. All Rights Reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _WCTYPE_H_
#define _WCTYPE_H_
#include <wchar.h>
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_ */