IMPORT_C int isalnum(int c);
Description
Tests whether the character is alphabetic or a decimal digit.
Parameters
int c |
an integer whose value is representable as an unsigned char.
|
|
Return value
int |
non-zero for true and zero for false. If the parameter is not in the domain of the function, the return result is undefined.
|
|