ncdc/libdc/src/util.c

13 lines
201 B
C
Raw Normal View History

2019-06-25 14:52:38 +02:00
#include <dc/util.h>
#include "internal.h"
2019-06-25 15:01:36 +02:00
void dc_util_dump_json(json_t *j)
2019-06-25 14:52:38 +02:00
{
return_if_true(j == NULL,);
char *str = json_dumps(j, JSON_COMPACT);
printf("%s\n", str);
free(str);
}