move definition of json_object_iter to public header to enable external use of json_object_object_foreachC

Patch from Rick Moran <https://github.com/DrHayt>


git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@74 327403b1-1117-474d-bef2-5cb71233fd97
This commit is contained in:
Jehiah Czebotar
2011-05-25 04:49:20 +00:00
parent 1910225b7c
commit 43d2f417c7
2 changed files with 8 additions and 8 deletions

View File

@@ -27,6 +27,14 @@ extern "C" {
extern const char *json_number_chars;
extern const char *json_hex_chars;
/* CAW: added for ANSI C iteration correctness */
struct json_object_iter
{
char *key;
struct json_object *val;
struct lh_entry *entry;
};
/* forward structure definitions */
typedef int boolean;

View File

@@ -40,14 +40,6 @@ struct json_object
} o;
};
/* CAW: added for ANSI C iteration correctness */
struct json_object_iter
{
char *key;
struct json_object *val;
struct lh_entry *entry;
};
#ifdef __cplusplus
}
#endif