Vodz, last_patch_88

This commit is contained in:
Glenn L McGrath
2003-06-10 17:22:49 +00:00
parent 6c43f743a3
commit 24833430bc
22 changed files with 211 additions and 365 deletions

View File

@@ -3,15 +3,15 @@
#define _FILES_H
struct config_keyword {
char keyword[14];
int (*handler)(char *line, void *var);
const char *keyword;
int (* const handler)(const char *line, void *var);
void *var;
char def[30];
const char *def;
};
int read_config(char *file);
int read_config(const char *file);
void write_leases(void);
void read_leases(char *file);
void read_leases(const char *file);
#endif