From 48f6a2e757ffa49f4a5676e29f5fff935660b6a1 Mon Sep 17 00:00:00 2001 From: c+1 Date: Thu, 4 May 2023 13:08:33 -0400 Subject: HALK HALK HALK --- src/include/token.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include/token.h') 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 -- cgit v1.2.3