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