summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/json.h2
-rw-r--r--src/json.c6
2 files changed, 6 insertions, 2 deletions
diff --git a/include/json.h b/include/json.h
index 5245115..9cc5bd1 100644
--- a/include/json.h
+++ b/include/json.h
@@ -46,7 +46,7 @@ enum json_parse_result {
};
struct json *json_parse(const char *str);
-struct json *json_parse_len(const char *str, size_t size);
+struct json *json_parse_len(size_t size, const char str[size]);
struct json *json_new(void);
diff --git a/src/json.c b/src/json.c
index 2e86eaf..cf71a90 100644
--- a/src/json.c
+++ b/src/json.c
@@ -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;