Skip to content

Instantly share code, notes, and snippets.

@pcercuei
Created January 26, 2022 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pcercuei/ffa55a45a44036957670100cedf2b4d3 to your computer and use it in GitHub Desktop.
Save pcercuei/ffa55a45a44036957670100cedf2b4d3 to your computer and use it in GitHub Desktop.
#include <libxml/tree.h>
int main(void)
{
xmlDoc *doc;
LIBXML_TEST_VERSION;
doc = xmlReadFile("test.xml", NULL, XML_PARSE_DTDVALID);
if (doc)
xmlFreeDoc(doc);
xmlCleanupParser();
xmlMemoryDump();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment