frontend: implement function for printing assembly lex tokens

This commit is contained in:
2024-11-19 22:09:32 +00:00
parent 4e8d6e8122
commit adf4e38578
2 changed files with 63 additions and 0 deletions

View File

@@ -2,7 +2,9 @@
#define DEBUG_H_
struct ivy_token;
struct ivy_asm_token;
extern void print_lex_token(struct ivy_token *tok);
extern void print_asm_lex_token(struct ivy_asm_token *tok);
#endif