blob: 2a944915a53d9d0bc33f43e4ebcde15dca857b4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _WCTYPE_H
#include <wctype/wctype.h>
/* Internal interfaces. */
extern int __iswspace (wint_t __wc);
extern int __iswctype (wint_t __wc, wctype_t __desc);
extern wctype_t __wctype (__const char *__property);
extern wint_t __towctrans (wint_t __wc, wctrans_t __desc);
#endif
|