Location:
ctype.h
IMPORT_C int isdigit(int c);
Tests whether the character is a standard decimal digit. For Unicode, this function returns TRUE only for the digits '0'...'9' (U+0030...U+0039), not for other digits in scripts like Arabic, Tamil, etc.
|
|