X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Ftools.h;h=4bdb8077e26c82b3f6934877a2b7f82706ccf0e0;hp=841265f99ad914e58ffcd918ffa926dd2f00a857;hb=501b31cddfaa3e8a4374dc84f6f75d07dd2d0abb;hpb=437fa285d12183a0f1e7450b3a01cbe5620a3507 diff --git a/tools/tools.h b/tools/tools.h index 841265f9..4bdb8077 100644 --- a/tools/tools.h +++ b/tools/tools.h @@ -1,17 +1,20 @@ #ifndef CCAN_TOOLS_H #define CCAN_TOOLS_H +#include -#define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -I." +#define IDENT_CHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \ + "abcdefghijklmnopqrstuvwxyz" \ + "01234567889_" -char **split(const void *ctx, const char *text, const char *delims, - unsigned int *nump); +#define SPACE_CHARS " \f\n\r\t\v" -char **get_deps(const void *ctx, const char *dir); +#define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I." -void *grab_fd(const void *ctx, int fd); -void *grab_file(const void *ctx, const char *filename); +/* This actually compiles and runs the info file to get dependencies. */ +char **get_deps(const void *ctx, const char *dir, bool recurse); -#define streq(a,b) (strcmp((a),(b)) == 0) +/* 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 */