X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=tools%2Ftools.h;h=449512550c035c40e8158318b720fb6fb890fc3c;hb=11e4a54f54b4f1f39eeabc390ae51b93b7f08e36;hp=f07627ebee99f4e10b62524c16be72a69f492d7c;hpb=e52dc42bad9a6637fbec44fe08705a51f6f84a94;p=ccan diff --git a/tools/tools.h b/tools/tools.h index f07627eb..44951255 100644 --- a/tools/tools.h +++ b/tools/tools.h @@ -1,9 +1,18 @@ #ifndef CCAN_TOOLS_H #define CCAN_TOOLS_H +#include + +#define IDENT_CHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \ + "abcdefghijklmnopqrstuvwxyz" \ + "01234567889_" #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); + +/* 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 */