aboutsummaryrefslogtreecommitdiffstats
path: root/lcc/include/alpha/osf/ctype.h
diff options
context:
space:
mode:
Diffstat (limited to 'lcc/include/alpha/osf/ctype.h')
-rwxr-xr-xlcc/include/alpha/osf/ctype.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/lcc/include/alpha/osf/ctype.h b/lcc/include/alpha/osf/ctype.h
new file mode 100755
index 0000000..86b8149
--- /dev/null
+++ b/lcc/include/alpha/osf/ctype.h
@@ -0,0 +1,25 @@
+#ifndef __CTYPE
+#define __CTYPE
+
+extern int isalnum(int);
+extern int isalpha(int);
+extern int iscntrl(int);
+extern int isdigit(int);
+extern int isgraph(int);
+extern int islower(int);
+extern int isprint(int);
+extern int ispunct(int);
+extern int isspace(int);
+extern int isupper(int);
+extern int isxdigit(int);
+extern int tolower(int);
+extern int toupper(int);
+
+#define __U 01
+#define __L 02
+#define __N 04
+#define __S 010
+#define __P 020
+#define __C 040
+
+#endif /* __CTYPE */