From: Jacob Alexander Date: Mon, 23 Mar 2015 23:34:30 +0000 (-0700) Subject: Adding JSON_C_TO_STRING_PRETTY_TAB flag X-Git-Tag: json-c-0.13-20171207~190^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F174%2Fhead;p=thirdparty%2Fjson-c.git Adding JSON_C_TO_STRING_PRETTY_TAB flag - Tabs are easier to read for tired eyes and editor adjustable --- diff --git a/json_object.c b/json_object.c index 9b89bb76..48d3850d 100644 --- a/json_object.c +++ b/json_object.c @@ -300,7 +300,14 @@ static void indent(struct printbuf *pb, int level, int flags) { if (flags & JSON_C_TO_STRING_PRETTY) { - printbuf_memset(pb, -1, ' ', level * 2); + if (flags & JSON_C_TO_STRING_PRETTY_TAB) + { + printbuf_memset(pb, -1, '\t', level); + } + else + { + printbuf_memset(pb, -1, ' ', level * 2); + } } } diff --git a/json_object.h b/json_object.h index 2bdfd5f9..5e0cf714 100644 --- a/json_object.h +++ b/json_object.h @@ -50,6 +50,14 @@ extern "C" { * for an example of the format. */ #define JSON_C_TO_STRING_PRETTY (1<<1) +/** + * A flag for the json_object_to_json_string_ext() and + * json_object_to_file_ext() functions which causes + * the output to be formatted. + * + * Instead of a "Two Space Tab" this gives a single tab character. + */ +#define JSON_C_TO_STRING_PRETTY_TAB (1<<3) /** * A flag to drop trailing zero for float values */