]> git.ozlabs.org Git - ccan-lca-2011.git/blobdiff - tools/tools.h
Don't run dependent tests if one fails.
[ccan-lca-2011.git] / tools / tools.h
index e43643ddb4d2028ffe1f3f9f9a9b018204876259..6ac4e66fcbc78b865e655d0182f4a4e7ead6cb0f 100644 (file)
@@ -1,13 +1,25 @@
 #ifndef CCAN_TOOLS_H
 #define CCAN_TOOLS_H
+#include <stdbool.h>
 
-#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);
+#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);
+/* 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);
 
+char *talloc_basename(const void *ctx, const char *dir);
+char *talloc_dirname(const void *ctx, const char *dir);
+char *talloc_getcwd(const void *ctx);
+#endif /* CCAN_TOOLS_H */