aboutsummaryrefslogtreecommitdiff
path: root/src/include/token.h
diff options
context:
space:
mode:
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