Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 10:19:15

0001 /*
0002  * $Id: json.h,v 1.6 2006/01/26 02:16:28 mclark Exp $
0003  *
0004  * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
0005  * Michael Clark <michael@metaparadigm.com>
0006  * Copyright (c) 2009 Hewlett-Packard Development Company, L.P.
0007  *
0008  * This library is free software; you can redistribute it and/or modify
0009  * it under the terms of the MIT license. See COPYING for details.
0010  *
0011  */
0012 
0013 /**
0014  * @file
0015  * @brief A convenience header that may be included instead of other individual ones.
0016  */
0017 #ifndef _json_h_
0018 #define _json_h_
0019 
0020 #ifdef __cplusplus
0021 extern "C" {
0022 #endif
0023 
0024 #include "arraylist.h"
0025 #include "debug.h"
0026 #include "json_c_version.h"
0027 #include "json_object.h"
0028 #include "json_object_iterator.h"
0029 #include "json_patch.h"
0030 #include "json_pointer.h"
0031 #include "json_tokener.h"
0032 #include "json_util.h"
0033 #include "linkhash.h"
0034 
0035 #ifdef __cplusplus
0036 }
0037 #endif
0038 
0039 #endif