xml->json translation revisited

This commit is contained in:
Olof hagsand 2016-09-28 21:12:38 +02:00
parent 3443dbd33f
commit 1c061aaf26
2 changed files with 122 additions and 74 deletions

View file

@ -28,7 +28,8 @@
*/
int json_parse_str(char *str, cxobj **xt);
int xml2json_cbuf(cbuf *cb, cxobj *x, int pretty);
int xml2json_cbuf_vec(cbuf *cb, cxobj **vec, size_t veclen, int pretty);
int xml2json_cbuf_vec(cbuf *cb, cxobj **vec, size_t veclen, int pretty);
int xml2json(FILE *f, cxobj *x, int pretty);
int xml2json_vec(FILE *f, cxobj **vec, size_t veclen, int pretty);
#endif /* _CLIXON_JSON_H */