]> git.ozlabs.org Git - ccan/blob - tools/tools.h
Revised version of infotojson after comments
[ccan] / tools / tools.h
1 #ifndef CCAN_TOOLS_H
2 #define CCAN_TOOLS_H
3
4 #define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I."
5
6 char **get_deps(const void *ctx, const char *dir);
7
8 void *grab_fd(const void *ctx, int fd);
9 void *grab_file(const void *ctx, const char *filename);
10
11 #endif /* CCAN_TOOLS_H */
12