SilverScreen Solid Modeler

isxdigit

isxdigit

Previous topic Next topic  

isxdigit

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

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

isalpha, isalnum, isdigit