Move json_value and obj_t to same file - Rename json_obj.* -> json_value.* - Move `print_json_value(...)` to json_value.* Move `err_ctx(...)` to util.* parse.h now only exposes `parse_json_value(...)`
12 lines
144 B
C
12 lines
144 B
C
|
|
#ifndef _PARSE_H
|
|
#define _PARSE_H
|
|
|
|
#include "json_value.h"
|
|
|
|
#include <stdio.h> // FILE*
|
|
|
|
struct json_value parse_json_value(FILE* fp);
|
|
|
|
#endif
|