1*46374Sbostic /*- 2*46374Sbostic * Copyright (c) 1990 The Regents of the University of California. 3*46374Sbostic * All rights reserved. 4*46374Sbostic * 5*46374Sbostic * This code is derived from software contributed to Berkeley by 6*46374Sbostic * Margo Seltzer. 7*46374Sbostic * 8*46374Sbostic * %sccs.include.redist.c% 9*46374Sbostic * 10*46374Sbostic * @(#)search.h 5.1 (Berkeley) 02/12/91 11*46374Sbostic */ 12*46374Sbostic 13*46374Sbostic /* Backward compatibility to hsearch interface */ 14*46374Sbostic typedef struct entry { 15*46374Sbostic char *key; 16*46374Sbostic char *data; 17*46374Sbostic } ENTRY; 18*46374Sbostic 19*46374Sbostic typedef enum { FIND, ENTER } ACTION; 20