summaryrefslogtreecommitdiff
path: root/display.h
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi92@disroot.org>2026-05-09 02:56:07 +0200
committerXavier Del Campo Romero <xavi92@disroot.org>2026-05-31 20:43:27 +0200
commit8c4f46dca6a1bb02082886beac46cbb8e4cf2bbb (patch)
tree2fa198377214bac01713fcfd6004eb7ca3515dfe /display.h
downloadslcob-8c4f46dca6a1bb02082886beac46cbb8e4cf2bbb.tar.gz
Add project skeleton
Diffstat (limited to 'display.h')
-rw-r--r--display.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/display.h b/display.h
new file mode 100644
index 0000000..5a16758
--- /dev/null
+++ b/display.h
@@ -0,0 +1,27 @@
+#ifndef DISPLAY_H
+#define DISPLAY_H
+
+#include "cgen.h"
+#include "lex.h"
+#include "prv.h"
+#include <stddef.h>
+
+struct dspentry
+{
+ const struct tk *tk;
+ const struct lit *lit;
+ const struct stentry *entry;
+};
+
+struct display
+{
+ struct dspentry *entries;
+ size_t nentries;
+ int println;
+};
+
+int display(const struct lex *l, struct prv *p);
+int display_cgen(const struct display *d, struct cgen *c);
+void display_free(struct display *d);
+
+#endif