diff options
| author | Xavier Del Campo Romero <xavi92@disroot.org> | 2026-05-09 02:56:07 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi92@disroot.org> | 2026-05-17 11:13:23 +0200 |
| commit | 527c23b73c8dae16f02cca6f450edb7d8225f60f (patch) | |
| tree | 6b2bfd9e8d814026d6d2c1839d8cfe1bcadc825c /display.h | |
| download | slcob-master.tar.gz | |
Diffstat (limited to 'display.h')
| -rw-r--r-- | display.h | 27 |
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 |
