xref: /original-bsd/lib/libc/db/recno/extern.h (revision f737e041)
1 /*-
2  * Copyright (c) 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)extern.h	8.2 (Berkeley) 02/21/94
8  */
9 
10 #include "../btree/extern.h"
11 
12 int	 __rec_close __P((DB *));
13 int	 __rec_delete __P((const DB *, const DBT *, u_int));
14 int	 __rec_dleaf __P((BTREE *, PAGE *, indx_t));
15 int	 __rec_fd __P((const DB *));
16 int	 __rec_fmap __P((BTREE *, recno_t));
17 int	 __rec_fout __P((BTREE *));
18 int	 __rec_fpipe __P((BTREE *, recno_t));
19 int	 __rec_get __P((const DB *, const DBT *, DBT *, u_int));
20 int	 __rec_iput __P((BTREE *, recno_t, const DBT *, u_int));
21 int	 __rec_put __P((const DB *dbp, DBT *, const DBT *, u_int));
22 int	 __rec_ret __P((BTREE *, EPG *, recno_t, DBT *, DBT *));
23 EPG	*__rec_search __P((BTREE *, recno_t, enum SRCHOP));
24 int	 __rec_seq __P((const DB *, DBT *, DBT *, u_int));
25 int	 __rec_sync __P((const DB *, u_int));
26 int	 __rec_vmap __P((BTREE *, recno_t));
27 int	 __rec_vout __P((BTREE *));
28 int	 __rec_vpipe __P((BTREE *, recno_t));
29