summaryrefslogtreecommitdiff
path: root/include/ctype.h
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-04-08 10:39:48 -0400
committerFreya Murphy <freya@freyacat.org>2025-04-08 10:39:48 -0400
commit8a19547957a86bed3f58c9abc1ac218d04698faf (patch)
treeed7ccc6f3a8902915dfe6c9bf763fc45d752b3c4 /include/ctype.h
parentfmt (diff)
downloadcomus-8a19547957a86bed3f58c9abc1ac218d04698faf.tar.gz
comus-8a19547957a86bed3f58c9abc1ac218d04698faf.tar.bz2
comus-8a19547957a86bed3f58c9abc1ac218d04698faf.zip
break apart c libaray
Diffstat (limited to 'include/ctype.h')
-rw-r--r--include/ctype.h22
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 */