aboutsummaryrefslogtreecommitdiff
path: root/end.h
blob: 5286f4f6f0c587830498de236260080506c9489a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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