Wednesday, November 30, 2016

C Wide character classification Functions

Wide character classification Functions:
iswalnum(C95) int iswalnum( wint_t ch );
iswalpha(C95) int iswalpha( wint_t ch );
iswlower(C95) int iswlower( wint_t ch );
iswupper(C95) int iswupper( wint_t ch );
iswdigit(C95) int iswdigit( wint_t ch );
iswxdigit(C95) int iswxdigit( wint_t ch );
iswcntrl(C95) int iswcntrl( wint_t ch );
iswgraph(C95) int iswgraph( wint_t ch );
iswspace(C95) int iswspace( wint_t ch );
iswblank(C95) int iswblank( wint_t ch );
iswprint(C95) int iswprint( wint_t ch );
iswpunct(C95) int iswpunct( wint_t ch );

wctype.h
Wide character classification Functions
Extensible wide character classification Functions
Wide character case mapping Functions
Extensible wide character case mapping Functions


Related topics:
Library Functions in C   |   Standard Library in C   |   Header Files in C   |   Functions in C   |   Keywords in C   |   Data Types in C   |   Pointers in C

List of topics: C Programming

No comments:

Post a Comment