blob: 0e32e206a848f031b0396e348501ebdca38d4f78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#include <stdio.h>
#include <stdlib.h>
#include "ezxmllib.h"
int process(char *fn) {
ezxml_t ezdoc = ezxml_parse_file(fn);
if (!ezdoc) {
fprintf(stderr, "Error when parsing file '%s'.\n", fn);
return 1;
}
ezxml_t title = ezxml_get(ezdoc, "front", 0, "article-meta", 0, "title-group", 0, "article-title", -1);
if (title) {
printf("article-title: %s\n", title->txt);
}
ezxml_free(ezdoc);
return 0;
}
int main(int argc, char *argv[]) {
for (int i = 1; i < argc; i++) {
process(argv[i]);
}
return 0;
}
|