1 .\" Hey Emacs! This file is -*- nroff -*- source.
2 .\" Copyright 1995 Jim Van Zandt <jrv@vanzandt.mv.com>
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein. The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
24 .\" Corrected prototype and include, aeb, 990927
25 .TH LSEARCH 3 1999-09-27 "GNU" "Linux Programmer's Manual"
27 lfind, lsearch \- linear search of an array
30 .B #include <search.h>
32 .BI "void *lfind(const void *" key ", const void *" base ", size_t *" nmemb ,
33 .BI " size_t " size ", int(*" compar ")(const void *, const void *));"
35 .BI "void *lsearch(const void *" key ", void *" base ", size_t *" nmemb ,
36 .BI " size_t " size ", int(*" compar ")(const void *, const void *));"
42 perform a linear search for
43 \fIkey\fP in the array \fIbase\fP which has \fI*nmemb\fP elements of
44 \fIsize\fP bytes each.
45 The comparison function referenced by
46 \fIcompar\fP is expected to have two arguments which point to the
47 \fIkey\fP object and to an array member, in that order, and which
48 returns zero if the \fIkey\fP object matches the array member, and
53 does not find a matching element, then the \fIkey\fP
54 object is inserted at the end of the table, and \fI*nmemb\fP is
56 In particular, one should know that a matching element
57 exists, or that more room is available.
60 returns a pointer to a matching member of the array, or
61 NULL if no match is found.
64 a matching member of the array, or to the newly added member if no
67 SVr4, 4.3BSD, POSIX.1-2001.
68 Present in libc since libc-4.6.27.
70 The naming is unfortunate.