aboutsummaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/context.h14
-rw-r--r--inc/log.h3
-rw-r--r--inc/tokenize.h1
3 files changed, 13 insertions, 5 deletions
diff --git a/inc/context.h b/inc/context.h
index b11e23d..5b314d7 100644
--- a/inc/context.h
+++ b/inc/context.h
@@ -2,18 +2,25 @@
#define CONTEXT_H
#include <stddef.h>
+#include <stdio.h>
typedef struct {
size_t start, end;
} ctx_string;
-struct ctx {
+struct ctx_location {
size_t line;
size_t column;
const char *path;
- char *raw;
- char *data;
+ char *data; // Raw
+ size_t size;
+};
+
+struct ctx {
+ struct ctx_location location;
+
+ char *data; // Preprocessed
size_t size;
size_t token_count;
@@ -27,6 +34,7 @@ struct ctx {
struct ctx *context_create(const char *path);
void context_destroy(struct ctx *ctx);
+void context_print(FILE *fd, struct ctx_location *location);
void context_rewind(struct ctx *ctx);
#endif
diff --git a/inc/log.h b/inc/log.h
index 4698f9c..da82233 100644
--- a/inc/log.h
+++ b/inc/log.h
@@ -3,7 +3,6 @@
#include <context.h>
-__attribute__((noreturn)) void errln(struct ctx *ctx, const char *fmt, ...);
-__attribute__((noreturn)) void err(const char *fmt, ...);
+__attribute__((noreturn)) void errln(struct ctx_location *location, const char *fmt, ...);
#endif
diff --git a/inc/tokenize.h b/inc/tokenize.h
index d1a2931..f5e8600 100644
--- a/inc/tokenize.h
+++ b/inc/tokenize.h
@@ -28,6 +28,7 @@ enum token_type {
struct token {
enum token_type type;
+ struct ctx_location location;
ctx_string string;
};