#include "json.h"
+JsonNode
+*zak_utils_json_node_new_array ()
+{
+ JsonArray *jar;
+ JsonNode *jnode;
+
+ jar = json_array_new ();
+ jnode = json_node_new (JSON_NODE_ARRAY);
+ json_node_init_array (jnode, jar);
+
+ return jnode;
+}
+
+JsonNode
+*zak_utils_json_node_new_object ()
+{
+ JsonObject *obj;
+ JsonNode *jnode;
+
+ obj = json_object_new ();
+ jnode = json_node_new (JSON_NODE_OBJECT);
+ json_node_init_object (jnode, obj);
+
+ return jnode;
+}
+
gint
zak_utils_json_get_integer (JsonReader *reader, const gchar *name)
{
G_BEGIN_DECLS
+JsonNode *zak_utils_json_node_new_array (void);
+JsonNode *zak_utils_json_node_new_object (void);
+
gint zak_utils_json_get_integer (JsonReader *reader, const gchar *name);
gdouble zak_utils_json_get_double (JsonReader *reader, const gchar *name);
const gchar *zak_utils_json_get_string (JsonReader *reader, const gchar *name);