diff options
Diffstat (limited to 'src/header/inc')
| -rw-r--r-- | src/header/inc/header.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/header/inc/header.h b/src/header/inc/header.h new file mode 100644 index 0000000..7514132 --- /dev/null +++ b/src/header/inc/header.h @@ -0,0 +1,18 @@ +#ifndef HEADER_H +#define HEADER_H + +#include <stdbool.h> +#include <stdio.h> + +#ifdef __cplusplus +extern "C" +{ +#endif + +int header_load_bool(FILE *f, const char *key, bool *value); + +#ifdef __cplusplus +} +#endif + +#endif /* HEADER_H */ |
