Hi,
Is it possible to change the json_t typedef to:
typedef struct json_t_tag {
json_type type;
size_t refcount;
} json_t;
(note the additional tag json_t_tag)
That would allow me to forward-declare like so:
struct json_t_tag;
typedef struct json_t_tag json_t;
thanks!
Paul