blob: 8846931177113210002291016b238ab358874192 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Mike Frysinger7031f622006-05-08 03:20:50 +00002/* files.h */
3#ifndef _FILES_H
4#define _FILES_H
5
6struct config_keyword {
7 const char *keyword;
8 int (* const handler)(const char *line, void *var);
9 void *var;
10 const char *def;
11};
12
13
14int read_config(const char *file);
15void write_leases(void);
16void read_leases(const char *file);
17
18struct option_set *find_option(struct option_set *opt_list, char code);
19
20#endif