V8/usr/src/cmd/monk/cmd/monk/search.h

Compare this file to the similar file:
Show the results in this format:

/*	@(#)search.h	1.1	*/
/* HSEARCH(3C) */
typedef struct entry { char *key, *data; } ENTRY;
typedef enum { FIND, ENTER } ACTION;


/* TSEARCH(3C) */
typedef enum { preorder, postorder, endorder, leaf } VISIT;

ENTRY	*hashenter(), *hashfind(), *hsearch();

struct table_info	{
	ENTRY	*start;
	int	length;
};