1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/EN7526G_3.18Kernel_SDK/apps/public/udhcp-0.9.8-2/files.h
2024-07-22 01:58:46 -03:00

18 lines
256 B
C
Executable File

/* files.h */
#ifndef _FILES_H
#define _FILES_H
struct config_keyword {
char keyword[14];
int (*handler)(char *line, void *var);
void *var;
char def[30];
};
int read_config(char *file);
void write_leases(void);
void read_leases(char *file);
#endif