Return Type | Function name | Arguments |
---|---|---|
bool | IsAllDigits | (const char*,) |
Declared in file: hzTextproc.h
Defined in file : hzTypes.cpp
Function Logic:
Function body:
bool IsAllDigits (const char* tok) { const char* i ; if (!tok || !tok[0]) return false ; for (i = tok ; *i && *i >&eq; ''0''&&*i <&eq; ''9'';i++) ; return *i ? false : true ; }