hush/networking/udhcp/files.h
"Vladimir N. Oleynik" 53ad366fe7 remove 1 exported
2005-09-23 10:44:02 +00:00

20 lines
360 B
C

/* files.h */
#ifndef _FILES_H
#define _FILES_H
struct config_keyword {
const char *keyword;
int (* const handler)(const char *line, void *var);
void *var;
const char *def;
};
int read_config(const char *file);
void write_leases(void);
void read_leases(const char *file);
struct option_set *find_option(struct option_set *opt_list, char code);
#endif