Return TypeFunction nameArguments
boolIsDigit(int32_t,)

Declared in file: hzChars.h
Defined in file : hzTextproc.cpp

Function Logic:

Function body:

bool IsDigit (int32_t c)
                               { return c >&eq; 0&& c < 256&&chartype[c]& CTYPE_DIGIT ? true : false ; }