blob: 03acee2fcb41b9d2f28267546e41ec7f25c7b1bf [file] [log] [blame]
Mike Frysinger7031f622006-05-08 03:20:50 +00001/* files.h */
2#ifndef _FILES_H
3#define _FILES_H
4
5struct config_keyword {
6 const char *keyword;
7 int (* const handler)(const char *line, void *var);
8 void *var;
9 const char *def;
10};
11
12
13int read_config(const char *file);
14void write_leases(void);
15void read_leases(const char *file);
16
17struct option_set *find_option(struct option_set *opt_list, char code);
18
19#endif