You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

json_util.h 276 B

12345678910111213
  1. #ifndef _json_util_h_
  2. #define _json_util_h_
  3. #include "json_object.h"
  4. #define JSON_FILE_BUF_SIZE 4096
  5. /* utlitiy functions */
  6. extern struct json_object* json_object_from_file(char *filename);
  7. extern int json_object_to_file(char *filename, struct json_object *obj);
  8. #endif

No Description

Contributors (1)