/* Default global XML parsing options.
*
* XML_PARSE_NONET
* Disable network access as a safety precaution.
*/
int DEFAULT_PARSE_OPTS = XML_PARSE_NONET;
/* Determine if an option is set. */
bool optset(int opts, int opt)
{
return ((opts & opt) == opt);
}
/* Read an XML document from a file. */
xmlDocPtr read_xml_doc(const char *path)
{
xmlDocPtr doc;