Go to the documentation of this file.00001 #include <stdio.h>
00002 #include <stdlib.h>
00003 #include <string.h>
00004
00005 #include "json.h"
00006
00007
00008 int main(int argc, char **argv)
00009 {
00010 argc = 0; argv = (char**)0;
00011 struct json_object *new_obj;
00012
00013 mc_set_debug(1);
00014
00015 new_obj = json_tokener_parse("/* more difficult test case */ { \"glossary\": { \"title\": \"example glossary\", \"GlossDiv\": { \"title\": \"S\", \"GlossList\": [ { \"ID\": \"SGML\", \"SortAs\": \"SGML\", \"GlossTerm\": \"Standard Generalized Markup Language\", \"Acronym\": \"SGML\", \"Abbrev\": \"ISO 8879:1986\", \"GlossDef\": \"A meta-markup language, used to create markup languages such as DocBook.\", \"GlossSeeAlso\": [\"GML\", \"XML\", \"markup\"] } ] } } }");
00016 printf("new_obj.to_string()=%s\n", json_object_to_json_string(new_obj));
00017 json_object_put(new_obj);
00018
00019 return 0;
00020 }