mirror of
https://git.busybox.net/udhcp
synced 2025-05-09 06:11:34 +08:00
18 lines
261 B
C
18 lines
261 B
C
/* files.h */
|
|
#ifndef _FILES_H
|
|
#define _FILES_H
|
|
|
|
struct config_keyword {
|
|
char keyword[20];
|
|
int (*handler)(char *line, void *var);
|
|
void *var;
|
|
char def[40];
|
|
};
|
|
|
|
|
|
int read_config(char *file);
|
|
void write_leases(int dummy);
|
|
void read_leases(char *file);
|
|
|
|
#endif
|