Home | Info | Community | Development | myReactOS | Contact Us
xmlSAX2GetLineNumber: : the user data (XML parser context)
Provide the line number of the current parsing point.
Returns an int
Definition at line 255 of file SAX2.c.
Referenced by test_xmlSAX2GetLineNumber(), and xmlInitializeGlobalState().
{ xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr) ctx; if ((ctx == NULL) || (ctxt->input == NULL)) return(0); return(ctxt->input->line); }