From c3cda93a77311b03d21b93ec6d89ee7ff50f5a49 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 5 Feb 2014 15:16:23 -0800 Subject: [PATCH] Basic data types --- json.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 json.c diff --git a/json.c b/json.c new file mode 100644 index 0000000..8ebd0ae --- /dev/null +++ b/json.c @@ -0,0 +1,27 @@ +#include +#include + +typedef enum json_type { + JSON_STRING, JSON_NUMBER, JSON_ARRAY, JSON_OBJECT, JSON_NULL, JSON_TRUE, JSON_FALSE, +} json_type; + +typedef struct json_array { + struct json_object *object; + struct json_array *next; +} json_array; + +typedef struct json_hash { + struct json_object *key; + struct json_object *value; + struct json_hash *next; +} json_hash; + +typedef struct json_object { + json_type type; + struct json_object *parent; + + char *string; + double number; + json_array *array; + json_hash *object; +} json_object;