|
||
int isdigit( int c )
int c; /* a character */
|
|
|
Synopsis |
#include "ctype.h"
The isdigit function determines whether c is a decimal digit.
|
|
Parameters |
c is an int, whose value must be representable as a char.
|
|
Return Value |
isdigit returns a non-zero value if c is a decimal digit, and 0 if not.
|
|
See Also |
|