Go to the first, previous, next, last section, table of contents.


isxdigit

Syntax

#include <ctype.h>

int isxdigit(int c);

Description

Tells if c is a valid hexadecimal digit or not. This includes [0-9a-fA-F].

Return Value

Nonzero if c is a hex digit, else zero.

Portability

ANSI, POSIX


Go to the first, previous, next, last section, table of contents.