Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
mxml/mxml.h
✓ #include <mxml/mxml.h>
Minimal XML parsing with mxml.
#include <mxml/mxml.h>
#include <iostream>
int main() {
mxml_node_t* tree = mxmlLoadString(NULL, "<root><item>value</item></root>", MXML_OPAQUE);
mxml_node_t* item = mxmlFindElement(tree, tree, "item", NULL, NULL, MXML_DESCEND);
if (item) std::cout << "Item: " << mxmlGetOpaque(item) << "\n";
mxmlDelete(tree);
return 0;
}
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.