]> git.ozlabs.org Git - ccan/blobdiff - tools/tools.h
Add --function= arg to doc_extract so we can use it on normal ccan C
[ccan] / tools / tools.h
index 4e8a48e6ab3b664ee4277fadae0725c3601fc7cb..449512550c035c40e8158318b720fb6fb890fc3c 100644 (file)
@@ -1,15 +1,18 @@
 #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_"
 
-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.c 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.c */
+char **get_safe_ccan_deps(const void *ctx, const char *dir, bool recurse);
 
 #endif /* CCAN_TOOLS_H */