Browse Source

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
tags/json-c-0.10-20120530
Jehiah Czebotar 14 years ago
parent
commit
43d2f417c7
2 changed files with 8 additions and 8 deletions
  1. +8
    -0
      json_object.h
  2. +0
    -8
      json_object_private.h

+ 8
- 0
json_object.h 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;


+ 0
- 8
json_object_private.h 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


Loading…
Cancel
Save