aboutsummaryrefslogtreecommitdiff
path: root/inc/context.h
diff options
context:
space:
mode:
authorMarvin Borner2022-02-20 18:48:30 +0100
committerMarvin Borner2022-02-20 18:48:30 +0100
commitfa02225c5ae8b704408769c70bb47101042762b8 (patch)
tree2bbd0763fccacd0a35631d6ee9a2176ed836eef5 /inc/context.h
parent5cc450b6e8554f5d982f444b9026447971c94024 (diff)
Haskell ftw
Diffstat (limited to 'inc/context.h')
-rw-r--r--inc/context.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/inc/context.h b/inc/context.h
deleted file mode 100644
index f9bb5e5..0000000
--- a/inc/context.h
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef CONTEXT_H
-#define CONTEXT_H
-
-#include <stddef.h>
-#include <stdio.h>
-
-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);
-char context_getch(struct ctx *ctx, size_t i);
-void context_print(FILE *fd, struct ctx_location *location);
-void context_rewind(struct ctx *ctx);
-
-#endif