aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/files.h
blob: 8846931177113210002291016b238ab358874192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* vi: set sw=4 ts=4: */
/* 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