aboutsummaryrefslogtreecommitdiff
path: root/src/include/token.h
diff options
context:
space:
mode:
authorc+12023-05-04 13:08:33 -0400
committerc+12023-05-04 13:08:33 -0400
commit48f6a2e757ffa49f4a5676e29f5fff935660b6a1 (patch)
tree943a5e1fc646f012f665dd397c0ebd2354067f2c /src/include/token.h
parent2ac46b8b73896603f6b14d3e52500761c49a3262 (diff)
HALK HALK HALK
Diffstat (limited to 'src/include/token.h')
-rw-r--r--src/include/token.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/token.h b/src/include/token.h
index b923734..9bfc4f3 100644
--- a/src/include/token.h
+++ b/src/include/token.h
@@ -12,13 +12,13 @@ typedef struct TOKEN_STRUC {
TOKEN_LBRAK, // '['
TOKEN_RBRAK, // ']'
TOKEN_POUND, // '#''
- TOKEN_TILDE, // '~'
+ TOKEN_tILDE, // '~'
TOKEN_QUOTE, // '''
TOKEN_EOF // '\0'
} type;
char* value;
-} token_T;
+} token_t;
-token_T* token_init(int type, char* value);
+token_t* token_init(int type, char* value);
#endif