summaryrefslogtreecommitdiff
path: root/userland/libc/ctype.h
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/ctype.h')
-rw-r--r--userland/libc/ctype.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/userland/libc/ctype.h b/userland/libc/ctype.h
deleted file mode 100644
index 5be4a89..0000000
--- a/userland/libc/ctype.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef CTYPE_H
-#define CTYPE_H
-
-int isspace(int c);
-int isascii(int c);
-int toupper(int c);
-int tolower(int c);
-int isdigit(int c);
-int isalpha(int c);
-int isxdigit(int c);
-int ispunct(int c);
-#endif