Home | History | Annotate | Download | only in libxml2

Lines Matching full:atts

1235 startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts)
1243 if (atts != NULL) {
1244 for (i = 0;(atts[i] != NULL);i++) {
1245 fprintf(stdout, ", %s='", atts[i++]);
1246 if (atts[i] != NULL)
1247 fprintf(stdout, "%s'", atts[i]);