tools.h 362 B

123456789101112
  1. #ifndef CCAN_TOOLS_H
  2. #define CCAN_TOOLS_H
  3. #define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I."
  4. char **get_deps(const void *ctx, const char *dir);
  5. void *grab_fd(const void *ctx, int fd);
  6. void *grab_file(const void *ctx, const char *filename);
  7. #endif /* CCAN_TOOLS_H */