13 lines
203 B
C
13 lines
203 B
C
|
#include <dc/util.h>
|
||
|
|
||
|
#include "internal.h"
|
||
|
|
||
|
void ncdc_util_dump_json(json_t *j)
|
||
|
{
|
||
|
return_if_true(j == NULL,);
|
||
|
char *str = json_dumps(j, JSON_COMPACT);
|
||
|
|
||
|
printf("%s\n", str);
|
||
|
free(str);
|
||
|
}
|