This documentation is copyright © 1998-2001 Sandro Sigala <sandro@sigala.it>.
All rights reserved.

Released under the GNU General Public License.

Return to index Up one level Previous symbol Next symbol

Summary of the <wctype.h> Header

View source

#ifndef __WCTYPE_H
#define __WCTYPE_H

#define WEOF		implementation defined

typedef implementation defined wint_t;
typedef implementation defined wctype_t;
typedef implementation defined wctrans_t;

int iswalnum(wint_t c);
int iswalpha(wint_t c);
int iswcntrl(wint_t c);
int iswdigit(wint_t c);
int iswgraph(wint_t c);
int iswlower(wint_t c);
int iswprint(wint_t c);
int iswpunct(wint_t c);
int iswspace(wint_t c);
int iswupper(wint_t c);
int iswxdigit(wint_t c);
wint_t towlower(wint_t c);
wint_t towupper(wint_t c);
wctype_t wctype(const char *property);
int iswctype(wint_t c, wctype_t desc);
wctrans_t wctrans(const char *property);
wint_t towctrans(wint_t c, wctrans_t desc);

#endif /* !__WCTYPE_H */