
/*
 * HASH.H
 * (c) 1992-3 J.Harper
 *
 * open hashing module header
 */

#ifndef _HASH_H
#define _HASH_H

typedef struct HASHNODE {
    struct HASHNODE    *h_Next;
    struct HASHNODE    *h_Prev;
    char	       *h_Name;
} HASHNODE;

void	    inserthash	(HASHNODE **, HASHNODE *, int);
void	    removehash	(HASHNODE **, HASHNODE *, int);
HASHNODE   *findhash	(HASHNODE **, char *, int);

#endif /* _HASH_H */
