X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=doc%2Fapiref.rst;h=86236236c344c9a540640ece88f71f1e11a84f6a;hb=743af38e7f2453bb90190433b1c05615eed6d747;hp=dc8252712f450c19973fabcc2012293e84c44d7d;hpb=9d16ec755c9754fe1f79fe55ab719a7f8578ce37;p=jansson.git diff --git a/doc/apiref.rst b/doc/apiref.rst index dc82527..8623623 100644 --- a/doc/apiref.rst +++ b/doc/apiref.rst @@ -392,18 +392,18 @@ can be ORed together to obtain *flags*. The following functions perform the actual JSON encoding. The result is in UTF-8. -.. cfunction:: char *json_dumps(const json_t *root, uint32_t flags) +.. cfunction:: char *json_dumps(const json_t *root, unsigned long flags) Returns the JSON representation of *root* as a string, or *NULL* on error. *flags* is described above. The return value must be freed by the caller using :cfunc:`free()`. -.. cfunction:: int json_dumpf(const json_t *root, FILE *output, uint32_t flags) +.. cfunction:: int json_dumpf(const json_t *root, FILE *output, unsigned long flags) Write the JSON representation of *root* to the stream *output*. *flags* is described above. Returns 0 on success and -1 on error. -.. cfunction:: int json_dump_file(const json_t *json, const char *path, uint32_t flags) +.. cfunction:: int json_dump_file(const json_t *json, const char *path, unsigned long flags) Write the JSON representation of *root* to the file *path*. If *path* already exists, it is overwritten. *flags* is described