* 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. */
| 903 | * Should be called in the context of attribute dumps. |
| 904 | */ |
| 905 | static void |
| 906 | xmlNsListDumpOutputCtxt(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: |
no test coverage detected