diff options
Diffstat (limited to 'src/lib/libc/stdlib/bsearch.3')
| -rw-r--r-- | src/lib/libc/stdlib/bsearch.3 | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/src/lib/libc/stdlib/bsearch.3 b/src/lib/libc/stdlib/bsearch.3 index 1622c96c6b..305dd48f50 100644 --- a/src/lib/libc/stdlib/bsearch.3 +++ b/src/lib/libc/stdlib/bsearch.3 | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 1 | .\" Copyright (c) 1990, 1991, 1993, 1994 |
| 2 | .\" All rights reserved. | 2 | .\" The Regents of the University of California. All rights reserved. |
| 3 | .\" | 3 | .\" |
| 4 | .\" This code is derived from software contributed to Berkeley by | 4 | .\" This code is derived from software contributed to Berkeley by |
| 5 | .\" the American National Standards Committee X3, on Information | 5 | .\" the American National Standards Committee X3, on Information |
| @@ -13,11 +13,7 @@ | |||
| 13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
| 14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
| 15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
| 16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
| 17 | .\" must display the following acknowledgement: | ||
| 18 | .\" This product includes software developed by the University of | ||
| 19 | .\" California, Berkeley and its contributors. | ||
| 20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
| 21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
| 22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
| 23 | .\" | 19 | .\" |
| @@ -33,10 +29,9 @@ | |||
| 33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
| 35 | .\" | 31 | .\" |
| 36 | .\" from: @(#)bsearch.3 5.6 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: bsearch.3,v 1.8 2012/07/08 10:25:55 guenther Exp $ |
| 37 | .\" $Id: bsearch.3,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ | ||
| 38 | .\" | 33 | .\" |
| 39 | .Dd June 29, 1991 | 34 | .Dd $Mdocdate: July 8 2012 $ |
| 40 | .Dt BSEARCH 3 | 35 | .Dt BSEARCH 3 |
| 41 | .Os | 36 | .Os |
| 42 | .Sh NAME | 37 | .Sh NAME |
| @@ -45,18 +40,18 @@ | |||
| 45 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS |
| 46 | .Fd #include <stdlib.h> | 41 | .Fd #include <stdlib.h> |
| 47 | .Ft void * | 42 | .Ft void * |
| 48 | .Fn bsearch "const void *key" "const void *base" "size_t nmemb" "size_t size" "int (*compar) (const void *, const void *)" | 43 | .Fn bsearch "const void *key" "const void *base" "size_t nmemb" "size_t size" "int (*compar)(const void *, const void *)" |
| 49 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION |
| 50 | The | 45 | The |
| 51 | .Fn bsearch | 46 | .Fn bsearch |
| 52 | function searches an array of | 47 | function searches an array of |
| 53 | .Fa nmemb | 48 | .Fa nmemb |
| 54 | objects, the initial member of which is | 49 | objects, the initial member of which is |
| 55 | pointed to by | 50 | pointed to by |
| 56 | .Fa base , | 51 | .Fa base , |
| 57 | for a member that matches the object pointed to by | 52 | for a member that matches the object pointed to by |
| 58 | .Fa key . | 53 | .Fa key . |
| 59 | The size of each member of the array is specified by | 54 | The size of each member of the array is specified by |
| 60 | .Fa size . | 55 | .Fa size . |
| 61 | .Pp | 56 | .Pp |
| 62 | The contents of the array should be in ascending sorted order according | 57 | The contents of the array should be in ascending sorted order according |
| @@ -64,9 +59,7 @@ to the comparison function referenced by | |||
| 64 | .Fa compar . | 59 | .Fa compar . |
| 65 | The | 60 | The |
| 66 | .Fa compar | 61 | .Fa compar |
| 67 | routine | 62 | routine is expected to have two arguments which point to the |
| 68 | is expected to have two | ||
| 69 | two arguments which point to the | ||
| 70 | .Fa key | 63 | .Fa key |
| 71 | object and to an array member, in that order, and should return an integer | 64 | object and to an array member, in that order, and should return an integer |
| 72 | less than, equal to, or greater than zero if the | 65 | less than, equal to, or greater than zero if the |
| @@ -83,7 +76,7 @@ If two members compare as equal, which member is matched is unspecified. | |||
| 83 | .Xr db 3 , | 76 | .Xr db 3 , |
| 84 | .Xr lsearch 3 , | 77 | .Xr lsearch 3 , |
| 85 | .Xr qsort 3 , | 78 | .Xr qsort 3 , |
| 86 | .\" .Xr tsearch 3 | 79 | .Xr tsearch 3 |
| 87 | .Sh STANDARDS | 80 | .Sh STANDARDS |
| 88 | The | 81 | The |
| 89 | .Fn bsearch | 82 | .Fn bsearch |
