Lisxdigit

Tests for a hexadecimal-digit character, including the digits 0-9 and the letters a to f (or A to F), in the local multibyte code set.

Library:LibC
Classification:Other
Service:Characters and Strings

Syntax

  #include <ctype.h> 
   
  int Lisxdigit (
     const char   *c);
  

Parameters

c

(IN) Points to the character to be tested.

Return Values

Returns a nonzero value when the argument is a hexadecimal digit. Otherwise, it returns zero.

Remarks

The Lisxdigit function is a double-byte interface.

See Also