tools.h 458 B

123456789101112131415
  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 **split(const void *ctx, const char *text, const char *delims,
  5. unsigned int *nump);
  6. char **get_deps(const void *ctx, const char *dir);
  7. void *grab_fd(const void *ctx, int fd);
  8. void *grab_file(const void *ctx, const char *filename);
  9. #endif /* CCAN_TOOLS_H */