diff options
Diffstat (limited to 'src/json.c')
-rw-r--r-- | src/json.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -10,7 +10,7 @@ #include "json.h" #include <stdint.h> -int og_json_parse_string(json_t *element, const char **str) +int og_json_parse_string(const json_t *element, const char **str) { if (json_typeof(element) != JSON_STRING) return -1; @@ -19,7 +19,7 @@ int og_json_parse_string(json_t *element, const char **str) return 0; } -int og_json_parse_string_copy(json_t *element, char *str, size_t size) +int og_json_parse_string_copy(const json_t *element, char *str, size_t size) { const char *reference_str; int err = 0; @@ -34,7 +34,7 @@ int og_json_parse_string_copy(json_t *element, char *str, size_t size) return 0; } -int og_json_parse_uint64(json_t *element, uint64_t *integer) +int og_json_parse_uint64(const json_t *element, uint64_t *integer) { if (json_typeof(element) != JSON_INTEGER) return -1; @@ -43,7 +43,7 @@ int og_json_parse_uint64(json_t *element, uint64_t *integer) return 0; } -int og_json_parse_uint(json_t *element, uint32_t *integer) +int og_json_parse_uint(const json_t *element, uint32_t *integer) { if (json_typeof(element) != JSON_INTEGER) return -1; @@ -52,7 +52,7 @@ int og_json_parse_uint(json_t *element, uint32_t *integer) return 0; } -int og_json_parse_bool(json_t *element, bool *value) +int og_json_parse_bool(const json_t *element, bool *value) { if (json_typeof(element) == JSON_TRUE) *value = true; |