summaryrefslogtreecommitdiffstats
path: root/jv_aux.h
diff options
context:
space:
mode:
authorStephen Dolan <mu@netsoc.tcd.ie>2012-11-26 22:22:45 +0000
committerStephen Dolan <mu@netsoc.tcd.ie>2012-11-26 22:22:45 +0000
commitd56370f734a2195fb473b8809f40358b024bb073 (patch)
tree84b18607d348a8f6328ac9af862a24c9cdb3dd8d /jv_aux.h
parent334a79b7040df4b5942da9688fbee0e5d3af9fd7 (diff)
Move some higher-level JSON manipulation functions into jv_aux.{c,h}
Diffstat (limited to 'jv_aux.h')
-rw-r--r--jv_aux.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/jv_aux.h b/jv_aux.h
new file mode 100644
index 00000000..9b91b664
--- /dev/null
+++ b/jv_aux.h
@@ -0,0 +1,11 @@
+#ifndef JV_AUX_H
+#define JV_AUX_H
+
+#include "jv.h"
+
+jv jv_lookup(jv t, jv k);
+jv jv_modify(jv t, jv k, jv v);
+jv jv_insert(jv root, jv value, jv* path, int pathlen);
+
+
+#endif