diff options
Diffstat (limited to 'lib/json.h')
| -rw-r--r-- | lib/json.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/json.h b/lib/json.h index c8d7fae1cd..b217df0a7b 100644 --- a/lib/json.h +++ b/lib/json.h @@ -39,6 +39,8 @@ extern void json_object_string_add(struct json_object* obj, const char *key, const char *s); extern void json_object_int_add(struct json_object* obj, const char *key, int32_t i); +extern void json_object_long_add(struct json_object* obj, const char *key, + int64_t i); extern void json_object_boolean_false_add(struct json_object* obj, const char *key); extern void json_object_boolean_true_add(struct json_object* obj, |
