Return Type | Function name | Arguments |
---|---|---|
bool | IsHex | (int,) |
Declared in file: hzChars.h
Defined in file : hzTextproc.cpp
Function Logic:
Function body:
bool IsHex (int c) { return c >&eq; 0&& c < 256&&chartype[c]& CTYPE_HEXDIGIT ? true : false ; }