X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2Fjson.h;h=e40387317c81729309d20c822efbf3faaab201ab;hb=077c4e7bb226de0f6414674e01a838498a49867b;hp=e9c238580b447cd17562567cbf01e30074aee6b6;hpb=77c5a4fca8b516fd39b8ba213daed17a465a6b2a;p=yaz-moved-to-github.git diff --git a/include/yaz/json.h b/include/yaz/json.h index e9c2385..e403873 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-2012 Index Data. + * Copyright (C) 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: @@ -53,8 +53,8 @@ enum json_node_type { struct json_node { enum json_node_type type; union { - char *string; - double number; + char *string; + double number; struct json_node *link[2]; } u; }; @@ -86,7 +86,7 @@ struct json_node *json_parser_parse(json_parser_t p, const char *json_str); /** \brief returns parser error \param p JSON parser handle - \returns parse error msg + \returns parse error msg This function should be called if json_parser_parse returns NULL . */ @@ -187,12 +187,12 @@ 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 text to WRBUF with escaping - \param b result - \param str input string to be encoded +/** \brief writes JSON tree with indentation (pretty print) + \param node JSON tree + \param result resulting JSON string buffer */ YAZ_EXPORT -void wrbuf_json_puts(WRBUF b, const char *str); +void json_write_wrbuf_pretty(struct json_node *node, WRBUF result); YAZ_END_CDECL