/** * \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