summaryrefslogtreecommitdiffhomepage
path: root/ast.c
diff options
context:
space:
mode:
Diffstat (limited to 'ast.c')
-rw-r--r--ast.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/ast.c b/ast.c
index 823b2a7..562a87b 100644
--- a/ast.c
+++ b/ast.c
@@ -29,26 +29,6 @@
static size_t ut_ext_types_count = 0;
static struct ut_extended_type *ut_ext_types = NULL;
-struct ut_op *
-ut_get_op(struct ut_state *s, uint32_t off)
-{
- if (off == 0 || off > s->poolsize)
- return NULL;
-
- return &s->pool[off - 1];
-}
-
-struct ut_op *
-ut_get_child(struct ut_state *s, uint32_t off, int n)
-{
- struct ut_op *op = ut_get_op(s, off);
-
- if (!op || n >= ARRAY_SIZE(op->tree.operand) || !op->tree.operand[n])
- return NULL;
-
- return ut_get_op(s, op->tree.operand[n]);
-}
-
uint32_t
ut_new_op(struct ut_state *s, int type, struct json_object *val, ...)
{