diff options
Diffstat (limited to 'src/inc/context.h')
-rw-r--r-- | src/inc/context.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/inc/context.h b/src/inc/context.h new file mode 100644 index 0000000..81a2ca4 --- /dev/null +++ b/src/inc/context.h @@ -0,0 +1,23 @@ +#ifndef CONTEXT_H +#define CONTEXT_H + +#include <string.h> + +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 |