Home | Info | Community | Development | myReactOS | Contact Us
xmlSAX2IsStandalone: : the user data (XML parser context)
Is this document tagged standalone ?
Returns 1 if true
Definition at line 287 of file SAX2.c.
Referenced by test_xmlSAX2IsStandalone(), and xmlSAXVersion().
{ xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx; if ((ctx == NULL) || (ctxt->myDoc == NULL)) return(0); return(ctxt->myDoc->standalone == 1); }