X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Ftools.h;h=4bdb8077e26c82b3f6934877a2b7f82706ccf0e0;hp=f07627ebee99f4e10b62524c16be72a69f492d7c;hb=83a1386b50966eb9667478c7cef9154dbd622541;hpb=16b7eb13fbcb1a04a71622e6310020baccc3c39c;ds=sidebyside diff --git a/tools/tools.h b/tools/tools.h index f07627eb..4bdb8077 100644 --- a/tools/tools.h +++ b/tools/tools.h @@ -1,9 +1,20 @@ #ifndef CCAN_TOOLS_H #define CCAN_TOOLS_H +#include + +#define IDENT_CHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \ + "abcdefghijklmnopqrstuvwxyz" \ + "01234567889_" + +#define SPACE_CHARS " \f\n\r\t\v" #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 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 */ +char **get_safe_ccan_deps(const void *ctx, const char *dir, bool recurse); #endif /* CCAN_TOOLS_H */