diff options
author | dota17 <chenguopingdota@163.com> | 2020-02-20 15:17:05 +0800 |
---|---|---|
committer | dota17 <chenguopingdota@163.com> | 2020-02-25 14:51:35 +0800 |
commit | 3c3b5920f77c751471cd46b92f9d3f5aa6ff2557 (patch) | |
tree | 72950e90387b3a90163162c71c37c92f416e8f1e /json_util.h | |
parent | 518f337ce81317525eb2ca1d11eac2b68a4b227c (diff) | |
download | json-c-3c3b5920f77c751471cd46b92f9d3f5aa6ff2557.tar.gz |
add uint64 data to json-c
Diffstat (limited to 'json_util.h')
-rw-r--r-- | json_util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/json_util.h b/json_util.h index 9620809..43adca9 100644 --- a/json_util.h +++ b/json_util.h @@ -103,6 +103,7 @@ JSON_EXPORT const char *json_util_get_last_err(void); JSON_EXPORT int json_parse_int64(const char *buf, int64_t *retval); +JSON_EXPORT int json_parse_uint64(const char *buf, uint64_t *retval); JSON_EXPORT int json_parse_double(const char *buf, double *retval); /** |