Home | History | Annotate | Line # | Download | only in common
readfile.h revision 1.2
      1  1.2  perry /*	$NetBSD: readfile.h,v 1.2 1998/01/09 08:09:14 perry Exp $	*/
      2  1.2  perry 
      3  1.1    gwr /* readfile.h */
      4  1.1    gwr 
      5  1.1    gwr #include "bptypes.h"
      6  1.1    gwr #include "hash.h"
      7  1.1    gwr 
      8  1.1    gwr #ifdef	__STDC__
      9  1.1    gwr #define P(args) args
     10  1.1    gwr #else
     11  1.1    gwr #define P(args) ()
     12  1.1    gwr #endif
     13  1.1    gwr 
     14  1.1    gwr extern boolean hwlookcmp P((hash_datum *, hash_datum *));
     15  1.1    gwr extern boolean iplookcmp P((hash_datum *, hash_datum *));
     16  1.1    gwr extern boolean nmcmp P((hash_datum *, hash_datum *));
     17  1.1    gwr extern void readtab P((int));
     18  1.1    gwr extern void rdtab_init P((void));
     19  1.1    gwr 
     20  1.1    gwr #undef P
     21  1.1    gwr 
     22