reactos/rosapps/smartpdf/fitz/include/samus/xml.h

21 lines
601 B
C
Raw Normal View History

/*
* A simple XML parsing API based on Inferno's.
* Under the surface this one uses expat and in-memory objects,
* but that should not be visible through the API.
*/
typedef struct sa_xmlparser_s sa_xmlparser;
typedef struct sa_xmlitem_s sa_xmlitem;
fz_error *sa_openxml(sa_xmlparser **spp, fz_stream *file, int ns);
void sa_debugxml(sa_xmlitem *item, int level);
void sa_closexml(sa_xmlparser *sp);
sa_xmlitem *sa_xmlnext(sa_xmlparser *sp);
void sa_xmldown(sa_xmlparser *sp);
void sa_xmlup(sa_xmlparser *sp);
char *sa_xmlname(sa_xmlitem *item);
char *sa_xmlatt(sa_xmlitem *item, char *att);