diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/json.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -143,7 +143,11 @@ enum json_parse_result parse_value(struct json **json_out, struct raw_json *raw, return ret; } -struct json *json_parse_len(const char *str, size_t size) { +struct json *json_parse(const char *str) { + return json_parse_len(strlen(str), str); +} + +struct json *json_parse_len(size_t size, const char str[size]) { if (!str || size == 0) return NULL; struct json *json = NULL; |