blob: a9f0c562d8c46323a0f5bcec8ac4f9d487d914a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef TOFI_CONFIG_H
#define TOFI_CONFIG_H
#include <stdbool.h>
#include "tofi.h"
void config_load(struct tofi *tofi, const char *filename);
bool config_apply(struct tofi *tofi, const char *option, const char *value);
void config_fixup_values(struct tofi *tofi);
#endif /* TOFI_CONFIG_H */
|