X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Ftools.h;h=a7612c7a4022043f76c40e929dbc362fddc1ef58;hp=fff962c7eb033cf08f7fe1939e2f231bef8caf74;hb=9965fc25fcc92dc76d1cd4cf9595dc3dc9ebc586;hpb=779d83085d6c6d37f6c4030130efe649a005696a diff --git a/tools/tools.h b/tools/tools.h index fff962c7..a7612c7a 100644 --- a/tools/tools.h +++ b/tools/tools.h @@ -1,12 +1,14 @@ #ifndef CCAN_TOOLS_H #define CCAN_TOOLS_H +#include #define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I." -char **get_deps(const void *ctx, const char *dir); +/* This actually compiles and runs the _info.c file to get dependencies. */ +char **get_deps(const void *ctx, const char *dir, bool recurse); -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, bool recurse); #endif /* CCAN_TOOLS_H */