Skip to content

Commit

Permalink
#74 continue renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
dibyendumajumdar committed Sep 12, 2021
1 parent d0efffd commit cb1a5fd
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 67 deletions.
2 changes: 1 addition & 1 deletion src/chibicc.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ struct C_Token {

noreturn void C_error(char *fmt, ...) __attribute__((format(printf, 1, 2)));
noreturn void C_error_at(C_parser *tokenizer, char *loc, char *fmt, ...) __attribute__((format(printf, 2, 3)));
noreturn void error_tok(C_parser *tokenizer, C_Token *tok, char *fmt, ...) __attribute__((format(printf, 2, 3)));
noreturn void C_error_tok(C_parser *tokenizer, C_Token *tok, char *fmt, ...) __attribute__((format(printf, 2, 3)));
void warn_tok(C_parser *tokenizer, C_Token *tok, char *fmt, ...) __attribute__((format(printf, 2, 3)));
bool equal(C_Token *tok, char *op);
C_Token *skip(C_parser *parser, C_Token *tok, char *op);
Expand Down
Loading

0 comments on commit cb1a5fd

Please sign in to comment.