Add pretty printing to yaz-json-parse
[yaz-moved-to-github.git] / include / yaz / json.h
index e9c2385..c30f10c 100644 (file)
@@ -187,6 +187,13 @@ void json_parser_subst(json_parser_t p, int idx, struct json_node *n);
 YAZ_EXPORT
 void json_write_wrbuf(struct json_node *node, WRBUF result);
 
+/** \brief writes JSON tree with indentation (pretty print)
+    \param node JSON tree
+    \param result resulting JSON string buffer
+*/
+YAZ_EXPORT
+void json_write_wrbuf_pretty(struct json_node *node, WRBUF result);
+
 /** \brief writes JSON text to WRBUF with escaping
     \param b result
     \param str input string to be encoded