On Tue, Mar 27, 2018 at 2:02 PM <[email protected]> wrote:
>
> From: Jeff Hostetler <[email protected]>
>
> Add a series of jw_ routines and "struct json_writer" structure to compose
> JSON data. The resulting string data can then be output by commands wanting
> to support a JSON output format.
<snip>
>
>
>
> void jw_object_intmax(struct json_writer *jw, const char *key, intmax_t
> value)
> +{
> + object_common(jw, key);
> + strbuf_addf(&jw->json, "%"PRIdMAX, (intmax_t)value);
Cast is not necessary.
> +}
> +
<snip>
>
> +void jw_array_intmax(struct json_writer *jw, intmax_t value)
> +{
> + array_common(jw);
> + strbuf_addf(&jw->json, "%"PRIdMAX, (intmax_t)value);
Cast is not necessary
>
> +}
> +
<snip>
-- Wink