xref: /csrg-svn/lib/libc/db/recno/extern.h (revision 51085)
150995Sbostic /*-
250995Sbostic  * Copyright (c) 1991 The Regents of the University of California.
350995Sbostic  * All rights reserved.
450995Sbostic  *
550995Sbostic  * %sccs.include.redist.c%
650995Sbostic  *
7*51085Sbostic  *	@(#)extern.h	5.2 (Berkeley) 09/11/91
850995Sbostic  */
950995Sbostic 
10*51085Sbostic #include "../btree/extern.h"
11*51085Sbostic 
1250995Sbostic int	 __rec_close __P((DB *));
1350995Sbostic int	 __rec_delete __P((const DB *, const DBT *, u_int));
14*51085Sbostic int	 __rec_dleaf __P((BTREE *, PAGE *, int));
1550995Sbostic int	 __rec_fmap __P((BTREE *, recno_t));
1650995Sbostic int	 __rec_fout __P((BTREE *));
1750995Sbostic int	 __rec_fpipe __P((BTREE *, recno_t));
18*51085Sbostic int	 __rec_get __P((const DB *, const DBT *, DBT *, u_int));
1950995Sbostic int	 __rec_iput __P((BTREE *, recno_t, const DBT *, u_int));
2050995Sbostic int	 __rec_put __P((const DB *dbp, const DBT *, const DBT *, u_int));
2150995Sbostic int	 __rec_ret __P((BTREE *, EPG *, DBT *));
22*51085Sbostic EPG	*__rec_search __P((BTREE *, recno_t, enum SRCHOP));
2350995Sbostic int	 __rec_seq __P((const DB *, DBT *, DBT *, u_int));
2450995Sbostic int	 __rec_sync __P((const DB *));
2550995Sbostic int	 __rec_vmap __P((BTREE *, recno_t));
2650995Sbostic int	 __rec_vout __P((BTREE *));
2750995Sbostic int	 __rec_vpipe __P((BTREE *, recno_t));
28