#ifndef CONTEXT_H #define CONTEXT_H #include struct ctx { size_t line; size_t column; const char *path; char *raw; char *data; size_t size; size_t token_count; struct token *tokens; }; struct ctx *context_create(const char *path); void context_destroy(struct ctx *ctx); void context_rewind(struct ctx *ctx); #endif