1 #ifndef UTFTPD_MAKE_H
2 #define UTFTPD_MAKE_H
3 
4 struct varlist {
5 	char *name;
6 	char *value;
7 	int lineno;
8 	struct varlist *next;
9 };
10 struct myhost {
11 	char *name;
12 	struct varlist *vars;
13 	struct myhost *next;
14 };
15 extern struct myhost *host_anker;
16 
17 
18 extern int parser_lineno;
19 extern int my_parser(const char *what);
20 extern void die_line(int,const char *,const char *);
21 
22 #endif
23 
24