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
|
@ -19,6 +19,7 @@ void * get_map(SortedMap *this, char *key);
|
|||
SortedMap * put_map(SortedMap *this, char *key, void *value);
|
||||
void print_map(SortedMap *this);
|
||||
void * fold_map(SortedMap *this, void * init, void * (*f)(void * acc, char *key, void *value));
|
||||
void free_mapvalues(SortedMap *this);
|
||||
void * free_mappair(void *acc, char *key, void *value);
|
||||
void * free_mapitem(void *acc, char *key, void *value);
|
||||
void free_map(SortedMap *this);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue