Go to the first, previous, next, last section, table of contents.
#include <ctype.h> int isxdigit(int c);
Tells if c is a valid hexadecimal digit or not. This includes
[0-9a-fA-F]
.
Nonzero if c is a hex digit, else zero.
ANSI, POSIX
Go to the first, previous, next, last section, table of contents.