From f181a8f04dfdfd8829861e0d0d549f39e40081e6 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 13 May 2021 12:03:43 +0200 Subject: New layout --- src/inc/context.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/inc/context.h (limited to 'src/inc/context.h') 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 + +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 -- cgit v1.2.3