Patch from Rick Moran <https://github.com/DrHayt> git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@74 327403b1-1117-474d-bef2-5cb71233fd97tags/json-c-0.10-20120530
@@ -27,6 +27,14 @@ extern "C" { | |||||
extern const char *json_number_chars; | extern const char *json_number_chars; | ||||
extern const char *json_hex_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 */ | /* forward structure definitions */ | ||||
typedef int boolean; | typedef int boolean; | ||||
@@ -40,14 +40,6 @@ struct json_object | |||||
} o; | } o; | ||||
}; | }; | ||||
/* CAW: added for ANSI C iteration correctness */ | |||||
struct json_object_iter | |||||
{ | |||||
char *key; | |||||
struct json_object *val; | |||||
struct lh_entry *entry; | |||||
}; | |||||
#ifdef __cplusplus | #ifdef __cplusplus | ||||
} | } | ||||
#endif | #endif | ||||