00001 /* 00002 * $Id: json_util.h,v 1.4 2006/01/30 23:07:57 mclark Exp $ 00003 * 00004 * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd. 00005 * Michael Clark <michael@metaparadigm.com> 00006 * 00007 * This library is free software; you can redistribute it and/or modify 00008 * it under the terms of the MIT license. See COPYING for details. 00009 * 00010 */ 00011 00012 #ifndef _json_util_h_ 00013 #define _json_util_h_ 00014 00015 #include "json_object.h" 00016 00017 #define JSON_FILE_BUF_SIZE 4096 00018 00019 /* utlitiy functions */ 00020 extern struct json_object* json_object_from_file(char *filename); 00021 extern int json_object_to_file(char *filename, struct json_object *obj); 00022 00023 #endif