diff options
| author | Tim J. Robbins <tjr@FreeBSD.org> | 2002-08-04 12:09:08 +0000 |
|---|---|---|
| committer | Tim J. Robbins <tjr@FreeBSD.org> | 2002-08-04 12:09:08 +0000 |
| commit | 4645079944183e75b2d56f8481c1b3a4b28b0975 (patch) | |
| tree | 63912096bfe0d27c0615433761b7eedc4c90e47b /include | |
| parent | 92ece88d1686bca38ee44fd24638d5771e3be523 (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/wctype.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/wctype.h b/include/wctype.h index ab763ca3dda2f..2dd5e790e3232 100644 --- a/include/wctype.h +++ b/include/wctype.h @@ -41,6 +41,11 @@ typedef _BSD_WINT_T_ wint_t; #undef _BSD_WINT_T_ #endif +#ifndef _WCTRANS_T +typedef int wctrans_t; +#define _WCTRANS_T +#endif + #ifndef _WCTYPE_T typedef long wctype_t; #define _WCTYPE_T @@ -52,6 +57,8 @@ typedef long wctype_t; __BEGIN_DECLS int iswctype(wint_t, wctype_t); +wint_t towctrans(wint_t, wctrans_t); +wctrans_t wctrans(const char *); wctype_t wctype(const char *); #if 0 /* XXX: not implemented */ |
