16 lines
211 B
C
16 lines
211 B
C
/**
|
|
* \file
|
|
*/
|
|
|
|
#ifndef CTYPE_H
|
|
#define CTYPE_H
|
|
|
|
/**
|
|
* Checks whether a character is an ascii digit
|
|
* \param c The character to check
|
|
* \return 0 if the character is a digit
|
|
*/
|
|
int isdigit(int c);
|
|
|
|
#endif
|