2020-07-26 15:38:29 -05:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
*/
|
|
|
|
|
2020-07-26 14:39:08 -05:00
|
|
|
#ifndef CTYPE_H
|
|
|
|
#define CTYPE_H
|
|
|
|
|
2020-07-26 15:38:29 -05:00
|
|
|
/**
|
|
|
|
* Checks whether a character is an ascii digit
|
|
|
|
* \param c The character to check
|
|
|
|
* \return 0 if the character is a digit
|
|
|
|
*/
|
2020-07-26 14:39:08 -05:00
|
|
|
int isdigit(int c);
|
|
|
|
|
|
|
|
#endif
|