blob: 9b073b1cea8040ff7817f5460939a087b3943b57 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef DISPLAY_H
#define DISPLAY_H
#include "lex.h"
#include "print.h"
#include "prv.h"
struct display
{
struct print p;
};
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
|