MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlNsListDumpOutputCtxt

Function xmlNsListDumpOutputCtxt

ThirdParty/libxml2/vtklibxml2/xmlsave.c:905–911  ·  view source on GitHub ↗

* xmlNsListDumpOutputCtxt * @ctxt: the save context * @cur: the first namespace * * Dump a list of local namespace definitions to a save context. * Should be called in the context of attribute dumps. */

Source from the content-addressed store, hash-verified

903 * Should be called in the context of attribute dumps.
904 */
905static void
906xmlNsListDumpOutputCtxt(xmlSaveCtxtPtr ctxt, xmlDocPtr doc, xmlNsPtr cur) {
907 while (cur != NULL) {
908 xmlNsDumpOutput(ctxt->buf, doc, cur, ctxt);
909 cur = cur->next;
910 }
911}
912
913/**
914 * xmlNsListDumpOutput:

Callers 2

xhtmlNodeDumpOutputFunction · 0.85

Calls 1

xmlNsDumpOutputFunction · 0.85

Tested by

no test coverage detected