]> git.ozlabs.org Git - ccan/blob - tools/read_config_header.h
crypto/siphash: new module.
[ccan] / tools / read_config_header.h
1 #ifndef CCAN_TOOLS_READ_CONFIG_HEADER_H
2 #define CCAN_TOOLS_READ_CONFIG_HEADER_H
3 #include <stdbool.h>
4
5 /* Get token if it's equal to token. */
6 bool get_token(const char **line, const char *token);
7
8 /* Get an identifier token. */
9 char *get_symbol_token(void *ctx, const char **line);
10
11 /* Read config header from config_dir/config.h: sets compiler/cflags. */
12 char *read_config_header(const char *config_dir, bool verbose);
13
14 #endif /* CCAN_TOOLS_READ_CONFIG_HEADER_H */