libcortex
Event loop library following a "batteries included" approach
Loading...
Searching...
No Matches
dict_inout_json.h
1#ifndef _CRTX_DICT_INOUT_JSON_H
2#define _CRTX_DICT_INOUT_JSON_H
3
4/*
5 * Mario Kicherer (dev@kicherer.org) 2016
6 *
7 */
8
9void crtx_dict_parse_json(struct crtx_dict *dict, char *string);
10char crtx_dict_json_from_file(struct crtx_dict **dict, char *dictdb_path, char *id);
11
12#endif
Definition dict.h:61