json_util.h
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:1k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. /*
  2.  * $Id: json_util.h,v 1.4 2006/01/30 23:07:57 mclark Exp $
  3.  *
  4.  * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
  5.  * Michael Clark <michael@metaparadigm.com>
  6.  *
  7.  * This library is free software; you can redistribute it and/or modify
  8.  * it under the terms of the MIT license. See COPYING for details.
  9.  *
  10.  */
  11. #ifndef _json_util_h_
  12. #define _json_util_h_
  13. #include "json_object.h"
  14. #define JSON_FILE_BUF_SIZE 4096
  15. /* utlitiy functions */
  16. extern struct json_object* json_object_from_file(char *filename);
  17. extern int json_object_to_file(char *filename, struct json_object *obj);
  18. #endif