summaryrefslogtreecommitdiff
path: root/src/core/token.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/token.h')
-rw-r--r--src/core/token.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/token.h b/src/core/token.h
index 2107dd2..fa20338 100644
--- a/src/core/token.h
+++ b/src/core/token.h
@@ -169,7 +169,8 @@ typedef struct {
Array *p_array;
} Token;
-Token* token_new(char *c_val, TokenType tt_cur, int i_line_nr, int i_pos_nr, char *c_filename);
+Token* token_new(char *c_val, TokenType tt_cur, int i_line_nr,
+ int i_pos_nr, char *c_filename);
Token* token_new_integer(int i_val);
Token* token_new_couble(double d_val);
Token* token_new_string(char *c_val);