|
||
int isxdigit( int c )
int c; /* a character */
|
|
|
Synopsis |
#include "ctype.h"
The isxdigit function determines whether c is a hexadecimal digit.
|
|
Parameters |
c is an int, whose value must be representable as a char.
|
|
Return Value |
isxdigit returns a non-zero value if c is a hexadecimal digit, and 0 if not. |
|
See Also |
|