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