diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/context.h | 14 | ||||
-rw-r--r-- | inc/log.h | 3 | ||||
-rw-r--r-- | inc/tokenize.h | 1 |
3 files changed, 13 insertions, 5 deletions
diff --git a/inc/context.h b/inc/context.h index b11e23d..5b314d7 100644 --- a/inc/context.h +++ b/inc/context.h @@ -2,18 +2,25 @@ #define CONTEXT_H #include <stddef.h> +#include <stdio.h> typedef struct { size_t start, end; } ctx_string; -struct ctx { +struct ctx_location { size_t line; size_t column; const char *path; - char *raw; - char *data; + char *data; // Raw + size_t size; +}; + +struct ctx { + struct ctx_location location; + + char *data; // Preprocessed size_t size; size_t token_count; @@ -27,6 +34,7 @@ struct ctx { struct ctx *context_create(const char *path); void context_destroy(struct ctx *ctx); +void context_print(FILE *fd, struct ctx_location *location); void context_rewind(struct ctx *ctx); #endif @@ -3,7 +3,6 @@ #include <context.h> -__attribute__((noreturn)) void errln(struct ctx *ctx, const char *fmt, ...); -__attribute__((noreturn)) void err(const char *fmt, ...); +__attribute__((noreturn)) void errln(struct ctx_location *location, const char *fmt, ...); #endif diff --git a/inc/tokenize.h b/inc/tokenize.h index d1a2931..f5e8600 100644 --- a/inc/tokenize.h +++ b/inc/tokenize.h @@ -28,6 +28,7 @@ enum token_type { struct token { enum token_type type; + struct ctx_location location; ctx_string string; }; |