diff options
Diffstat (limited to 'end.h')
| -rw-r--r-- | end.h | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ +#ifndef END_H +#define END_H + +#include "cgen.h" +#include "lex.h" +#include "prv.h" +#include <stddef.h> + +struct end +{ + size_t block_i; +}; + +int end(const struct lex *l, struct prv *p); +int end_cgen(const struct end *e, struct cgen *c); +void end_free(struct end *e); + +#endif |
