typedef struct json *jsonPtr; struct json{ enum type t; char *key; union { unsigned int u_num; int num; float f; char *c_str; jsonPtr list_or_obj; } data; };