aboutsummaryrefslogtreecommitdiff
path: root/init.h
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-03-14 11:59:09 -0700
committerMichael Forney <mforney@mforney.org>2019-03-14 12:20:40 -0700
commit6a00f53cd34e33c12a91942015a3dc5dbcb44bf2 (patch)
tree22697da00604707958828d0903d1c0c452dac64f /init.h
parent1bc3f5f9bdf956e50cb38046f41bf5f61b49d306 (diff)
Abbreviate tag names
Diffstat (limited to 'init.h')
-rw-r--r--init.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/init.h b/init.h
index 4292e02..9e50515 100644
--- a/init.h
+++ b/init.h
@@ -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 *);