#ifndef CONTEXT_H #define CONTEXT_H #include #include typedef struct { size_t start, end; } ctx_string; struct ctx_location { size_t line; size_t column; const char *path; char *data; // Raw size_t size; }; struct ctx { struct ctx_location location; char *data; // Preprocessed size_t size; size_t token_count; struct token *tokens; struct { struct node *head; struct node *current; } tree; }; 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