/** * @file ctype.h * * @author Freya Murphy * * C type libaray functions */ #ifndef _CTYPE_H #define _CTYPE_H /** * @returns 1 if c is a space */ extern int isspace(int c); /** * @returns 1 if c is a digit (0 - 9) */ extern int isdigit(int c); #endif /* ctype.h */