From ce4b0e570b4b9e81e18814bd3de443308a4b36ef Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Sat, 16 Jun 2007 07:37:16 +0000 Subject: [PATCH] ffix --- man3/btree.3 | 28 +++++++++++----------------- 1 file changed, 11 insertions(+), 17 deletions(-) diff --git a/man3/btree.3 b/man3/btree.3 index b31525a0a..414a80162 100644 --- a/man3/btree.3 +++ b/man3/btree.3 @@ -57,26 +57,20 @@ associated key/data pairs. The btree access method specific data structure provided to .BR dbopen (3) is defined in the include file as follows: -.PP +.in +0.5i +.nf typedef struct { -.RS -u_long flags; -.br -u_int cachesize; -.br -int maxkeypage; -.br -int minkeypage; -.br -u_int psize; -.br -int (*compare)(const DBT *key1, const DBT *key2); -.br -size_t (*prefix)(const DBT *key1, const DBT *key2); -.br + u_long flags; + u_int cachesize; + int maxkeypage; + int minkeypage; + u_int psize; + int (*compare)(const DBT *key1, const DBT *key2); + size_t (*prefix)(const DBT *key1, const DBT *key2); int lorder; -.RE } BTREEINFO; +.fi +.in .PP The elements of this structure are as follows: .TP