diff options
Diffstat (limited to 'man3/bsearch.3')
-rw-r--r-- | man3/bsearch.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/man3/bsearch.3 b/man3/bsearch.3 index eca877f2..6f10f544 100644 --- a/man3/bsearch.3 +++ b/man3/bsearch.3 @@ -54,14 +54,14 @@ object and to an array member, in that order, and should return an integer less than, equal to, or greater than zero if the \fIkey\fP object is found, respectively, to be less than, to match, or be greater than the array member. -.SH "RETURN VALUE" +.SH RETURN VALUE The .BR bsearch () function returns a pointer to a matching member of the array, or NULL if no match is found. If there are multiple elements that match the key, the element returned is unspecified. -.SH "CONFORMING TO" +.SH CONFORMING TO SVr4, 4.3BSD, POSIX.1-2001, C89, C99. .SH EXAMPLE The example below first sorts an array of structures using @@ -113,7 +113,7 @@ main(int argc, char **argv) } .fi .\" this example referred to in qsort.3 -.SH "SEE ALSO" +.SH SEE ALSO .BR hsearch (3), .BR lsearch (3), .BR qsort (3), |