X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Ftools.h;h=e43643ddb4d2028ffe1f3f9f9a9b018204876259;hp=4e8a48e6ab3b664ee4277fadae0725c3601fc7cb;hb=d4ace4a572234de67d1421a444c38bb4fdcbef43;hpb=4239dd56d06be573c5cbf8fdf1ab0995cbd4bc66 diff --git a/tools/tools.h b/tools/tools.h index 4e8a48e6..e43643dd 100644 --- a/tools/tools.h +++ b/tools/tools.h @@ -3,13 +3,11 @@ #define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I." -char **split(const void *ctx, const char *text, const char *delims, - unsigned int *nump); - +/* This actually compiles and runs the _info.c file to get dependencies. */ char **get_deps(const void *ctx, const char *dir); -void *grab_fd(const void *ctx, int fd); -void *grab_file(const void *ctx, const char *filename); +/* This is safer: just looks for ccan/ strings in _info.c */ +char **get_safe_ccan_deps(const void *ctx, const char *dir); #endif /* CCAN_TOOLS_H */