Main Page | Alphabetical List | Class List | File List | Class Members | File Members

wctype.h

Go to the documentation of this file.
00001 /*-------------------------------------------------------------------
00002  * /
00003  * / apeNEXT wctype functions for nlcc
00004  * /
00005  * / $Id: wctype.h,v 1.11 2005/06/08 14:06:53 pleiter Exp $
00006  * /
00007  * /
00008  * / ISO/IEC 9899:1999 (E) Standard
00009  * / Wide character classification and mapping utilities  <wctype.h>
00010  * /
00011  * /
00012  * /
00013  * / IMPLEMENTATION for APEnext: not needed for apenext (wctype.h)
00014  * /-----------------------------------------------------------------*/
00015 
00016 #error "wide characters are not implemented for APEnext nlcc"
00017 
00018 #ifndef _WCTYPE_H
00019 #define _WCTYPE_H
00020 
00021 #include <nlibc.h>
00022 
00023 typedef unsigned int wint_t;
00024 wctrans_t
00025 wctype_t
00026 WEOF
00027 
00028 int iswalnum(wint_t wc); 
00029 int iswalpha(wint_t wc); 
00030 int iswblank(wint_t wc); 
00031 int iswcntrl(wint_t wc); 
00032 int iswdigit(wint_t wc); 
00033 int iswgraph(wint_t wc); 
00034 int iswlower(wint_t wc); 
00035 int iswprint(wint_t wc); 
00036 int iswpunct(wint_t wc); 
00037 int iswspace(wint_t wc); 
00038 int iswupper(wint_t wc); 
00039 int iswxdigit(wint_t wc); 
00040 int iswctype(wint_t wc, wctype_t desc); 
00041 wctype_t wctype(const char *property); 
00042 wint_t towlower(wint_t wc); 
00043 wint_t towupper(wint_t wc); 
00044 wint_t towctrans(wint_t wc, wctrans_t desc); 
00045 wctrans_t wctrans(const char *property); 
00046 
00047 #endif  /* __WCTYPE_H defined.  */

Generated on Fri Jul 14 10:51:32 2006 for nlibc by doxygen 1.3.5