summaryrefslogtreecommitdiff
path: root/display.h
diff options
context:
space:
mode:
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