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