]> git.ozlabs.org Git - ccan/blob - ccan/ttxml/_info
9bf0ddbcdebe9adb688670ec343145a591912cd9
[ccan] / ccan / ttxml / _info
1 #include <string.h>
2 #include "config.h"
3
4 /**
5  * ttxml - tiny XML library for parsing (trusted!) XML documents.
6  *
7  * This parses an XML file into a convenient data structure.
8  *
9  * License: GPL
10  * Author: Daniel Burke <dan.p.burke@gmail.com>
11  */
12 int main(int argc, char *argv[])
13 {
14         /* Expect exactly one argument */
15         if (argc != 2)
16                 return 1;
17
18         if (strcmp(argv[1], "depends") == 0) {
19                 return 0;
20         }
21
22         return 1;
23 }