1 --- _SB/Libc/stdlib/FreeBSD/lsearch.3 2003-05-20 15:23:25.000000000 -0700
2 +++ _SB/Libc/stdlib/FreeBSD/lsearch.3.edit 2006-06-28 16:55:53.000000000 -0700
11 .Nd linear search and append
18 -.Fa "const void *key" "void *base" "size_t *nelp" "size_t width"
20 +.Fa "const void *key" "const void *base" "size_t *nelp" "size_t width"
21 .Fa "int \*[lp]*compar\*[rp]\*[lp]const void *, const void *\*[rp]"
25 -.Fa "const void *key" "const void *base" "size_t *nelp" "size_t width"
27 +.Fa "const void *key" "void *base" "size_t *nelp" "size_t width"
28 .Fa "int \*[lp]*compar\*[rp]\*[lp]const void *, const void *\*[rp]"
35 -functions walk linearly through an array and compare each element with
36 -the one to be sought using a supplied comparison function.
37 +functions walk linearly through an array, comparing each element with
38 +the one to be sought, by means of a supplied comparison function.