1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-08-08 17:42:14 +03:00

Huge commit: 1.5.0, XML validation, Xpath, bugfixes, examples .... Daniel

This commit is contained in:
Daniel Veillard
1999-08-10 19:04:08 +00:00
parent 6a6ccc1de6
commit b05deb7f5f
95 changed files with 15709 additions and 2561 deletions

View File

@@ -81,7 +81,12 @@ void xmlXPAthDebugDumpNodeSet(FILE *output, xmlNodeSetPtr cur) {
fprintf(output, "Set contains %d nodes:\n", cur->nodeNr);
for (i = 0;i < cur->nodeNr;i++) {
fprintf(output, "%d", i + 1);
xmlDebugDumpOneNode(output, cur->nodeTab[i], 2);
if (cur->nodeTab[i] == NULL)
fprintf(output, " NULL\n");
else if (cur->nodeTab[i]->type == XML_DOCUMENT_NODE)
fprintf(output, " /\n");
else
xmlDebugDumpOneNode(output, cur->nodeTab[i], 2);
}
}