iswxdigit

Indicates if a wide character is a hexadecimal digit (0 to 9, A to F, or a to f) in the program's current locale.

Format

#include  <wctype.h> (ISO C)

#include  <wchar.h> (XPG4)

int iswxdigit  (wint_t wc);

Arguments

wc
An object of type wint_t. The value of wc must be representable as a wchar_t in the current locale, or must equal the value of the macro WEOF. If it has any other value, the behavior is undefined.

Return Values
nonzero  If a hexadecimal digit. 
If not a hexadecimal digit. 


Previous Page | Next Page | Table of Contents | Index