b27cf34dc1
* drop function declarations from wctype.h which are already in wchar.h git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39917 a95241bf-73f2-0310-859d-f6bbb57e9c96
31 lines
549 B
C
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_ */
|