--- libelwix/inc/elwix/ajson.h 2018/04/19 16:13:48 1.6 +++ libelwix/inc/elwix/ajson.h 2018/06/26 14:39:13 1.7 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: ajson.h,v 1.6 2018/04/19 16:13:48 misho Exp $ +* $Id: ajson.h,v 1.7 2018/06/26 14:39:13 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -313,6 +313,18 @@ int json_add_value(char * __restrict jstr, int jlen, i */ int json_add_pair(char * __restrict jstr, int jlen, int wspace, const char *key, const char *val); +/* + * json_add_pair2() - Adds key/value pair with formated args + * + * @jstr = JSON string + * @jlen = JSON string length + * @wspace = whitespace include + * @key = Key string + * @fmt = Format string for values + * return: -1 error or !=-1 actual JSON string length + */ +int json_add_pair2(char * __restrict jstr, int jlen, int wspace, + const char *key, const char *fmt, ...); /* * json_add_array() - Adds array *