aboutsummaryrefslogtreecommitdiff
path: root/src/token.c
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/token.c
parent2ac46b8b73896603f6b14d3e52500761c49a3262 (diff)
HALK HALK HALK
Diffstat (limited to 'src/token.c')
-rw-r--r--src/token.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/token.c b/src/token.c
index da38b9a..3021a64 100644
--- a/src/token.c
+++ b/src/token.c
@@ -1,8 +1,8 @@
#include "include/token.h"
#include <stdlib.h>
-token_T* token_init(int type, char* val) {
- token_T* token = calloc(1, sizeof(struct TOKEN_STRUC));
+token_t* token_init(int type, char* val) {
+ token_t* token = calloc(1, sizeof(struct TOKEN_STRUC));
token->type = type;
token->value = val;