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, 12 insertions, 0 deletions
diff --git a/userland/libc/ctype.h b/userland/libc/ctype.h
new file mode 100644
index 0000000..5be4a89
--- /dev/null
+++ b/userland/libc/ctype.h
@@ -0,0 +1,12 @@
+#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