summaryrefslogtreecommitdiffstats
path: root/src/json-c-test.c
blob: e8bf2e44aef551726eef91f4c9009b4e7512e6b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * This file is part of MXE. See LICENSE.md for licensing information.
 */

#include <json-c/json.h>
#include <stdio.h>

int main(int argc, char *argv[])
{
    json_object *jobj;

    (void)argc;
    (void)argv;

    jobj = json_object_new_object();
    if (!jobj) {
        return 1;
    }
    json_object_object_add(jobj, "key", json_object_new_string("value"));
    printf("%s", json_object_to_json_string(jobj));
    return 0;
}