Registry / serialization / mxml
library4.0.4vcpkgunverified

A tiny XML parsing library for C++.

vcpkg install mxml
INSTALL
IMPORT
SIG · MXML
M
mxml
serializationcppv4.0.4
harness data pending
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.

Upgrade
Version history
4.0.4latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources

No resource links recorded.

mxml — pip install mxml · libregistry