Russ Dill | 61fb489 | 2002-10-14 21:41:28 +0000 | [diff] [blame] | 1 | /* files.h */ |
2 | #ifndef _FILES_H | ||||
3 | #define _FILES_H | ||||
4 | |||||
5 | struct config_keyword { | ||||
6 | char keyword[14]; | ||||
7 | int (*handler)(char *line, void *var); | ||||
8 | void *var; | ||||
9 | char def[30]; | ||||
10 | }; | ||||
11 | |||||
12 | |||||
13 | int read_config(char *file); | ||||
14 | void write_leases(void); | ||||
15 | void read_leases(char *file); | ||||
16 | |||||
17 | #endif |