Mini-XML is a small XML library that you can use to read and write XML and XML-like data files in your application without requiring large non-standard libraries. Mini-XML only requires an ANSI C compatible compiler and a 'make' program.
Questions tagged [mini-xml]
16 questions
0
votes
1 answer
mxmlDelete () usage
I use mxml library to parse XML file in C language. I load my XML in buffer using the following code:
mxml_node_t *tree;
tree = mxmlLoadString(NULL,XMLbuf,MXML_OPAQUE_CALLBACK);
The XML file is complicated but this is irrelevant at the moment.
My…

Lambov
- 15
- 1
- 6