summaryrefslogtreecommitdiff
path: root/ezxml.c
blob: 952b24d9bb252e89323b5ce984257bfaa7dfc5a6 (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
#include <stdio.h>
#include <stdlib.h>

#include "ezxmllib.h"

int process(char *fn) {
	ezxml_t ezdoc = ezxml_parse_file(fn);
	if (ezdoc) {
		printf("Got a document\n");
	}

	ezxml_t title = ezxml_get(ezdoc, "article-meta", 0, "title-group", 0,  "article-title", 0, -1);
	if (title) {
		printf("title: %s", title->txt);
	}

	return 0;
}

int main(int argc, char *argv[]) {

	for (int i = 1; i < argc; i++) {
		process(argv[i]);
	}

	return 0;
}