aboutsummaryrefslogtreecommitdiff
path: root/src/inc/context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/inc/context.h')
-rw-r--r--src/inc/context.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/inc/context.h b/src/inc/context.h
deleted file mode 100644
index 603f42e..0000000
--- a/src/inc/context.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef CONTEXT_H
-#define CONTEXT_H
-
-#include <lib.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