From 4645079944183e75b2d56f8481c1b3a4b28b0975 Mon Sep 17 00:00:00 2001 From: "Tim J. Robbins" Date: Sun, 4 Aug 2002 12:09:08 +0000 Subject: Add the ISO C90 Amd. 1 wctrans(3) and towctrans(3) functions. --- include/wctype.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include/wctype.h') diff --git a/include/wctype.h b/include/wctype.h index ab763ca3dda2..2dd5e790e323 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 */ -- cgit v1.2.3