summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ezxml.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/ezxml.c b/ezxml.c
index b267b40..3b6094e 100644
--- a/ezxml.c
+++ b/ezxml.c
@@ -20,14 +20,6 @@ int process(char *fn) {
return 1;
}
- for (ezxml_t c = ezxml_child(body, "sec"); c; c = c->next) {
- ezxml_t t = ezxml_get(c, "title", -1);
- if (t) {
- printf("section-title: %s\n", t->txt);
- }
- }
-
- printf("\n");
return 0;
}