blob: 410b4d7be8cab8339d685e26c1b0fb43a5bab0b9 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | struct init {
	uint64_t start, end;
	struct expr *expr;
	struct init *next;
};
struct scope;
struct type;
struct init *mkinit(uint64_t, uint64_t, struct expr *);
struct init *parseinit(struct scope *, struct type *);
 |