X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=tools%2Ftools.h;h=9fd1e1f6b908e4f7a004d5b89b74198fcef84f04;hb=088b2a9f4a7dedf357d90e5e420062461f78a13b;hp=f07627ebee99f4e10b62524c16be72a69f492d7c;hpb=16b7eb13fbcb1a04a71622e6310020baccc3c39c;p=ccan diff --git a/tools/tools.h b/tools/tools.h index f07627eb..9fd1e1f6 100644 --- a/tools/tools.h +++ b/tools/tools.h @@ -1,9 +1,31 @@ #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." +#define IDENT_CHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \ + "abcdefghijklmnopqrstuvwxyz" \ + "01234567889_" -char **get_deps(const void *ctx, const char *dir); +#define SPACE_CHARS " \f\n\r\t\v" -#endif /* CCAN_TOOLS_H */ +/* FIXME: Remove some -I */ +#define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I. -I../.." + +/* This actually compiles and runs the info file to get dependencies. */ +char **get_deps(const void *ctx, const char *dir, const char *name, + bool recurse); + +/* This is safer: just looks for ccan/ strings in info */ +char **get_safe_ccan_deps(const void *ctx, const char *dir, const char *name, + bool recurse); +/* This also needs to compile the info file. */ +char **get_libs(const void *ctx, const char *dir, + const char *name, unsigned int *num); + +/* From tools.c */ +char *talloc_basename(const void *ctx, const char *dir); +char *talloc_dirname(const void *ctx, const char *dir); +char *talloc_getcwd(const void *ctx); +char *run_command(const void *ctx, const char *fmt, ...); +#endif /* CCAN_TOOLS_H */