diff options
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 |