]> git.saurik.com Git - apple/libc.git/blobdiff - db/man/FreeBSD/btree.3
Libc-1439.100.3.tar.gz
[apple/libc.git] / db / man / FreeBSD / btree.3
index 2dc095ecadb2b901ab3282a697cf2160fc0c8f6b..d886f97460f5aa8a20cdf6fffa2c3203920a12f8 100644 (file)
@@ -9,10 +9,6 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 3. All advertising materials mentioning features or use of this software
-.\"    must display the following acknowledgement:
-.\"    This product includes software developed by the University of
-.\"    California, Berkeley and its contributors.
 .\" 4. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
@@ -30,7 +26,7 @@
 .\" SUCH DAMAGE.
 .\"
 .\"    @(#)btree.3     8.4 (Berkeley) 8/18/94
-.\" $FreeBSD: src/lib/libc/db/man/btree.3,v 1.6 2002/12/19 09:40:21 ru Exp $
+.\" $FreeBSD: src/lib/libc/db/man/btree.3,v 1.9 2007/01/09 00:27:51 imp Exp $
 .\"
 .Dd August 18, 1994
 .Dt BTREE 3
@@ -64,7 +60,7 @@ The
 access method specific data structure provided to
 .Fn dbopen
 is defined in the
-.Aq Pa db.h
+.In db.h
 include file as follows:
 .Bd -literal
 typedef struct {
@@ -87,7 +83,7 @@ The flag value is specified by
 any of the following values:
 .Bl -tag -width indent
 .It Dv R_DUP
-Permit duplicate keys in the tree, i.e. permit insertion if the key to be
+Permit duplicate keys in the tree, i.e., permit insertion if the key to be
 inserted already exists in the tree.
 The default behavior, as described in
 .Xr dbopen 3 ,
@@ -145,7 +141,7 @@ Not currently implemented.
 .It Va minkeypage
 The minimum number of keys which will be stored on any single page.
 This value is used to determine which keys will be stored on overflow
-pages, i.e. if a key or data item is longer than the pagesize divided
+pages, i.e., if a key or data item is longer than the pagesize divided
 by the minkeypage value, it will be stored on overflow pages instead
 of in the page itself.
 If