1 --- lsearch.3.bsdnew 2009-11-13 14:11:50.000000000 -0800
2 +++ lsearch.3 2009-11-13 14:11:50.000000000 -0800
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.