diff options
author | Michael Forney <mforney@mforney.org> | 2019-03-14 11:59:09 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-03-14 12:20:40 -0700 |
commit | 6a00f53cd34e33c12a91942015a3dc5dbcb44bf2 (patch) | |
tree | 22697da00604707958828d0903d1c0c452dac64f /init.h | |
parent | 1bc3f5f9bdf956e50cb38046f41bf5f61b49d306 (diff) |
Abbreviate tag names
Diffstat (limited to 'init.h')
-rw-r--r-- | init.h | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -1,13 +1,11 @@ -struct initializer { +struct init { uint64_t start, end; - struct expression *expr; - struct initializer *next, *subinit; + struct expr *expr; + struct init *next, *subinit; }; struct scope; struct type; -struct function; -struct declaration; -struct initializer *mkinit(uint64_t, uint64_t, struct expression *); -struct initializer *parseinit(struct scope *, struct type *); +struct init *mkinit(uint64_t, uint64_t, struct expr *); +struct init *parseinit(struct scope *, struct type *); |