diff options
author | Marvin Borner | 2021-08-07 23:39:21 +0200 |
---|---|---|
committer | Marvin Borner | 2021-08-07 23:39:21 +0200 |
commit | 51c4defc436c0d119941eb6d5b953d27b5b8e6f7 (patch) | |
tree | c90b6329b81a4c4715f7860cb3a6a7b1d3174e37 /inc/context.h | |
parent | 55e5ec54eaef97e87efefc2294a5afaf8935566b (diff) |
Better error logging
Diffstat (limited to 'inc/context.h')
-rw-r--r-- | inc/context.h | 14 |
1 files changed, 11 insertions, 3 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 |