add json parsing of lists and maps
This commit is contained in:
parent
7471093f67
commit
025c8125fa
16 changed files with 210 additions and 20 deletions
4
json.h
4
json.h
|
@ -1,7 +1,11 @@
|
|||
#ifndef JSON_HEADER
|
||||
#define JSON_HEADER
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "sortedmap.h"
|
||||
#include "arraylist.h"
|
||||
|
||||
enum jsontype { NIL, BOOLEAN, STRING, NUMBER, LIST, MAP };
|
||||
|
||||
typedef struct json {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue