X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2Fjson.h;h=c30f10cc5ed8f664dfadcc1a8c4d3e578fe4e9cc;hb=70b6eca73431e3cec68c93096de4fb02378c7ae6;hp=723ad029df9e8725bb06999842df6630823671dd;hpb=4e01ee252ae4ec86534061e905eb5d2a3ddb386b;p=yaz-moved-to-github.git diff --git a/include/yaz/json.h b/include/yaz/json.h index 723ad02..c30f10c 100644 --- a/include/yaz/json.h +++ b/include/yaz/json.h @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2010 Index Data. + * Copyright (C) 1995-2012 Index Data. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -187,6 +187,20 @@ 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 +*/ +YAZ_EXPORT +void wrbuf_json_puts(WRBUF b, const char *str); + YAZ_END_CDECL #endif