xref: /csrg-svn/lib/libc/db/recno/extern.h (revision 50995)
1*50995Sbostic /*-
2*50995Sbostic  * Copyright (c) 1991 The Regents of the University of California.
3*50995Sbostic  * All rights reserved.
4*50995Sbostic  *
5*50995Sbostic  * %sccs.include.redist.c%
6*50995Sbostic  *
7*50995Sbostic  *	@(#)extern.h	5.1 (Berkeley) 09/04/91
8*50995Sbostic  */
9*50995Sbostic 
10*50995Sbostic int	 __rec_close __P((DB *));
11*50995Sbostic int	 __rec_delete __P((const DB *, const DBT *, u_int));
12*50995Sbostic int	 __rec_fmap __P((BTREE *, recno_t));
13*50995Sbostic int	 __rec_fout __P((BTREE *));
14*50995Sbostic int	 __rec_fpipe __P((BTREE *, recno_t));
15*50995Sbostic int	 __rec_get __P((const DB *, DBT *, DBT *, u_int));
16*50995Sbostic int	 __rec_iput __P((BTREE *, recno_t, const DBT *, u_int));
17*50995Sbostic int	 __rec_put __P((const DB *dbp, const DBT *, const DBT *, u_int));
18*50995Sbostic int	 __rec_ret __P((BTREE *, EPG *, DBT *));
19*50995Sbostic EPG	*__rec_search __P((BTREE *, recno_t, int *));
20*50995Sbostic int	 __rec_seq __P((const DB *, DBT *, DBT *, u_int));
21*50995Sbostic int	 __rec_sync __P((const DB *));
22*50995Sbostic int	 __rec_vmap __P((BTREE *, recno_t));
23*50995Sbostic int	 __rec_vout __P((BTREE *));
24*50995Sbostic int	 __rec_vpipe __P((BTREE *, recno_t));
25*50995Sbostic 
26*50995Sbostic #include "../btree/extern.h"
27