aboutsummaryrefslogtreecommitdiff
path: root/src/include/token.h
diff options
context:
space:
mode:
authorc+12023-05-03 08:25:43 -0400
committerc+12023-05-03 08:25:43 -0400
commitd2114c17b9356d010fc907952790f7b6c989e1ba (patch)
tree07577bcaf05609a6cafbbac942ad97a088bb1d9f /src/include/token.h
parentca9cbfe21ae6b213a665627a7b9430b8584c961e (diff)
token
Diffstat (limited to 'src/include/token.h')
-rw-r--r--src/include/token.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/include/token.h b/src/include/token.h
index e69de29..c5ee9ec 100644
--- a/src/include/token.h
+++ b/src/include/token.h
@@ -0,0 +1,22 @@
+#ifndef TOKEN_H
+#define TOKEN_H
+typedef struct TOKEN_STRUCT {
+ enum {
+ TOKEN_ID, // keyword
+ TOKEN_EQ, // '='
+ TOKEN_STR, // "string"
+ TOKEN_SEMI, // ';'
+ TOKEN_LORD, // '/'
+ TOKEN_RORD, // '\'
+ TOKEN_AMP, // '&'
+ TOKEN_LBRAK, // '['
+ TOKEN_RBRAK, // ']'
+ TOKEN_POUND, // '#''
+ TOKEN_TILDE // '~'
+ } type;
+
+ char* value;
+} token_T;
+
+token_T* init_token(int type, char* value);
+#endif