xref: /dragonfly/libexec/bootpd/readfile.h (revision 2cd2d2b5)
1 /* readfile.h */
2 
3 #include "bptypes.h"
4 #include "hash.h"
5 
6 #ifdef	__STDC__
7 #define P(args) args
8 #else
9 #define P(args) ()
10 #endif
11 
12 extern boolean hwlookcmp P((hash_datum *, hash_datum *));
13 extern boolean iplookcmp P((hash_datum *, hash_datum *));
14 extern boolean nmcmp P((hash_datum *, hash_datum *));
15 extern void readtab P((int));
16 extern void rdtab_init P((void));
17 
18 #undef P
19 
20