aboutsummaryrefslogtreecommitdiff
path: root/5.20/token.h
diff options
context:
space:
mode:
Diffstat (limited to '5.20/token.h')
-rw-r--r--5.20/token.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/5.20/token.h b/5.20/token.h
new file mode 100644
index 0000000..327b1e7
--- /dev/null
+++ b/5.20/token.h
@@ -0,0 +1,17 @@
+#ifndef TOKEN_H
+
+#define MAXTOKEN 100
+
+enum { NAME, PARENS, BRACKETS };
+enum { NO, YES };
+
+int gettoken(void);
+int peaktoken(void);
+int isdatatyp(void);
+
+extern char tokentype;
+extern char token[MAXTOKEN];
+extern char prevtoken;
+
+#define TOKEN_H
+#endif