diff options
-rw-r--r-- | hence.c | 2 | ||||
-rw-r--r-- | lex.c | 6 | ||||
-rw-r--r-- | lex.h | 2 |
3 files changed, 6 insertions, 4 deletions
@@ -23,7 +23,7 @@ int main(int argc, char **argv) { return 1; } - struct token *tok = lex_file(fd); + struct token *tok = lex_file(argv[1], fd); int p = parse(argv[1], fd, tok); // gate_set_input("a", LOGIC_LOW); @@ -6,7 +6,7 @@ #include "common.h" #include "token.h" -#define emit_error(...) fprintf(stderr, "Error (%zd,%zd): ", line_number, 1 + column_number);\ +#define emit_error(...) fprintf(stderr, "%s at (%zd,%zd): ", filename, line_number, 1 + column_number);\ fprintf(stderr, __VA_ARGS__) #define BUFFER_SIZE 1024 @@ -50,6 +50,7 @@ static struct keyword token_descriptors[] = { static char buf[BUFFER_SIZE]; static FILE* fd; +static const char *filename = NULL; static size_t line_number = 0; static size_t column_number = 0; static ssize_t leading_whitespace_len = 0; @@ -230,7 +231,8 @@ lex_line(void) { } struct token * -lex_file(FILE *fd_local) { +lex_file(const char *filename_local, FILE *fd_local) { + filename = filename_local; fd = fd_local; line_number = 1; @@ -5,7 +5,7 @@ #include "token.h" -struct token* lex_file(FILE*); +struct token* lex_file(const char *, FILE*); const char *get_token_description(enum TOKEN_TYPE); #endif |