]> git.ozlabs.org Git - ccan/blobdiff - tools/tools.h
Fix tracing for tdb_chainunlock.
[ccan] / tools / tools.h
index 4e8a48e6ab3b664ee4277fadae0725c3601fc7cb..4bdb8077e26c82b3f6934877a2b7f82706ccf0e0 100644 (file)
@@ -1,15 +1,20 @@
 #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_"
+
+#define SPACE_CHARS    " \f\n\r\t\v"
 
-char **split(const void *ctx, const char *text, const char *delims,
-            unsigned int *nump);
+#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);
 
-void *grab_fd(const void *ctx, int fd);
-void *grab_file(const void *ctx, const char *filename);
+/* 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 */