]> git.ozlabs.org Git - ccan/blob - ccan/dgraph/_info
base64: fix for unsigned chars (e.g. ARM).
[ccan] / ccan / dgraph / _info
1 #include "config.h"
2 #include <stdio.h>
3 #include <string.h>
4
5 /**
6  * dgraph - simple directed graph module
7  *
8  * This code implements a simple directed graph, with nodes and edges.
9  *
10  * License: LGPL (v2.1 or any later version)
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                 printf("ccan/tlist\n");
20                 printf("ccan/typesafe_cb\n");
21                 printf("ccan/agar\n");
22                 return 0;
23         }
24
25         return 1;
26 }