source: MondoRescue/trunk/mindi-busybox/networking/udhcp/files.h@ 904

Last change on this file since 904 was 821, checked in by Bruno Cornec, 18 years ago

Addition of busybox 1.2.1 as a mindi-busybox new package
This should avoid delivering binary files in mindi not built there (Fedora and Debian are quite serious about that)

File size: 360 bytes
Line 
1/* files.h */
2#ifndef _FILES_H
3#define _FILES_H
4
5struct config_keyword {
6 const char *keyword;
7 int (* const handler)(const char *line, void *var);
8 void *var;
9 const char *def;
10};
11
12
13int read_config(const char *file);
14void write_leases(void);
15void read_leases(const char *file);
16
17struct option_set *find_option(struct option_set *opt_list, char code);
18
19#endif
Note: See TracBrowser for help on using the repository browser.