diff options
Diffstat (limited to 'include/ctype.h')
-rw-r--r-- | include/ctype.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/include/ctype.h b/include/ctype.h deleted file mode 100644 index c5f92b4..0000000 --- a/include/ctype.h +++ /dev/null @@ -1,22 +0,0 @@ -/** - * @file ctype.h - * - * @author Freya Murphy <freya@freyacat.org> - * - * 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 */ |