From 51c4defc436c0d119941eb6d5b953d27b5b8e6f7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 7 Aug 2021 23:39:21 +0200 Subject: Better error logging --- inc/context.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'inc/context.h') 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 +#include 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 -- cgit v1.2.3