comparison src/ploki/sub.h @ 4223:ac0403686959

<oerjan> rm -rf src/ploki; mv ploki src
author HackBot
date Fri, 20 Dec 2013 22:18:50 +0000
parents
children
comparison
equal deleted inserted replaced
4222:b0f3e267bb1e 4223:ac0403686959
1 #ifndef SUB_H_
2 #define SUB_H_
3
4 #include "config.h"
5
6 #include <stddef.h>
7
8 struct expr;
9 struct sub;
10
11 struct sub *sub_new(const struct expr *);
12 struct sub *sub_incr(struct sub *);
13 void sub_decr(struct sub *);
14 ATTR_PURE
15 struct expr *sub_expr(const struct sub *);
16 size_t sub_id(const struct sub *);
17
18 #endif /* SUB_H_ */