Name the types in the order the JSON spec names them in

This commit is contained in:
Eric Fischer 2014-02-05 22:40:35 -08:00
parent c69e595e4e
commit 879f9126b3

@ -5,7 +5,7 @@
#include <stdarg.h>
typedef enum json_type {
JSON_STRING, JSON_NUMBER, JSON_ARRAY, JSON_HASH, JSON_NULL, JSON_TRUE, JSON_FALSE,
JSON_HASH, JSON_ARRAY, JSON_NUMBER, JSON_STRING, JSON_TRUE, JSON_FALSE, JSON_NULL,
} json_type;
typedef struct json_array {