blob: 35a44f3a09b05666415161d013d3dbbe44070ea7 [file] [log] [blame]
Michael Clark4504df72007-03-13 08:26:20 +00001/*
Michael Clarkf6a6e482007-03-13 08:26:23 +00002 * $Id: json_object_private.h,v 1.4 2006/01/26 02:16:28 mclark Exp $
Michael Clark4504df72007-03-13 08:26:20 +00003 *
Michael Clarkf6a6e482007-03-13 08:26:23 +00004 * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
Michael Clark4504df72007-03-13 08:26:20 +00005 * Michael Clark <michael@metaparadigm.com>
6 *
Michael Clarkf6a6e482007-03-13 08:26:23 +00007 * 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.
Michael Clark4504df72007-03-13 08:26:20 +00009 *
10 */
11
Michael Clarkf0d08882007-03-13 08:26:18 +000012#ifndef _json_object_private_h_
13#define _json_object_private_h_
14
15typedef void (json_object_delete_fn)(struct json_object *o);
16typedef int (json_object_to_json_string_fn)(struct json_object *o,
17 struct printbuf *pb);
18
19struct json_object
20{
21 enum json_type o_type;
22 json_object_delete_fn *_delete;
23 json_object_to_json_string_fn *_to_json_string;
24 int _ref_count;
25 struct printbuf *_pb;
26 union data {
27 boolean c_boolean;
28 double c_double;
29 int c_int;
30 struct lh_table *c_object;
31 struct array_list *c_array;
32 char *c_string;
33 } o;
34};
35
Michael Clark4504df72007-03-13 08:26:20 +000036/* CAW: added for ANSI C iteration correctness */
37struct json_object_iter
38{
39 char *key;
40 struct json_object *val;
41 struct lh_entry *entry;
42};
43
Michael Clarkf0d08882007-03-13 08:26:18 +000044#endif