summaryrefslogtreecommitdiff
path: root/minilib/ctype.h
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-01-01 19:31:12 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2017-01-01 19:31:12 +0100
commit69fe7b182a1eedfb75c611f7dd35fa60200426f4 (patch)
tree329a0c6cc9b06c23d8782ece09f0f7dfa9b16b13 /minilib/ctype.h
downloadcompilertests-69fe7b182a1eedfb75c611f7dd35fa60200426f4.tar.gz
compilertests-69fe7b182a1eedfb75c611f7dd35fa60200426f4.tar.bz2
initial checkin
Diffstat (limited to 'minilib/ctype.h')
-rw-r--r--minilib/ctype.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/minilib/ctype.h b/minilib/ctype.h
new file mode 100644
index 0000000..f19fbce
--- /dev/null
+++ b/minilib/ctype.h
@@ -0,0 +1,6 @@
+#pragma once
+
+extern int isalpha( int c );
+extern int isdigit( int c );
+extern int isalnum( int c );
+extern int isspace( int c );