ref: 1b7e120c090af2f8f0e17a664ba0e5e5d7f261a0
dir: /sys/include/json.h/
#pragma src "/sys/src/libjson" #pragma lib "libjson.a" typedef struct JSONEl JSONEl; typedef struct JSON JSON; enum { JSONNull, JSONBool, JSONNumber, JSONString, JSONArray, JSONObject, }; struct JSONEl { char *name; JSON *val; JSONEl *next; }; struct JSON { int t; union { double n; char *s; JSONEl *first; }; }; JSON* jsonparse(char *); void jsonfree(JSON *); JSON* jsonbyname(JSON *, char *); char* jsonstr(JSON *);