X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;ds=sidebyside;f=tools%2Ftools.h;h=9fd1e1f6b908e4f7a004d5b89b74198fcef84f04;hb=61088f5c752c555172e2ab6cf93a7967f79f3f2c;hp=a7612c7a4022043f76c40e929dbc362fddc1ef58;hpb=023f704e8089f64bd7a77bb7f95b8ea5355fe640;p=ccan diff --git a/tools/tools.h b/tools/tools.h index a7612c7a..9fd1e1f6 100644 --- a/tools/tools.h +++ b/tools/tools.h @@ -2,13 +2,30 @@ #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_" -/* This actually compiles and runs the _info.c file to get dependencies. */ -char **get_deps(const void *ctx, const char *dir, bool recurse); +#define SPACE_CHARS " \f\n\r\t\v" -/* This is safer: just looks for ccan/ strings in _info.c */ -char **get_safe_ccan_deps(const void *ctx, const char *dir, bool recurse); +/* FIXME: Remove some -I */ +#define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I. -I../.." -#endif /* CCAN_TOOLS_H */ +/* 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 */