This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



LSEARCH(3)                              BSD Library Functions Manual                              LSEARCH(3)

NAME
     lfind, lsearch -- linear search and append

LIBRARY
     Standard C Library (libc, -lc)

SYNOPSIS
     #include <search.h>

     void *
     lfind(const void *key, const void *base, size_t *nelp, size_t width,
         int (*compar)(const void *, const void *));

     void *
     lsearch(const void *key, void *base, size_t *nelp, size_t width,
         int (*compar)(const void *, const void *));

DESCRIPTION
     The lsearch() and lfind() functions walk linearly through an array, comparing each element with the one
     to be sought, by means of a supplied comparison function.

     The key argument points to an element that matches the one that is searched.  The array's address in
     memory is denoted by the base argument.  The width of one element (i.e., the size as returned by
     sizeof()) is passed as the width argument.  The number of valid elements contained in the array (not
     the number of elements the array has space reserved for) is given in the integer pointed to by nelp.
     The compar argument points to a function which compares its two arguments and returns zero if they are
     matching, and non-zero otherwise.

     If no matching element was found in the array, lsearch() copies key into the position after the last
     element and increments the integer pointed to by nelp.

RETURN VALUES
     The lsearch() and lfind() functions return a pointer to the first element found.  If no element was
     found, lsearch() returns a pointer to the newly added element, whereas lfind() returns NULL.  Both
     functions return NULL if an error occurs.

SEE ALSO
     bsearch(3), hsearch(3), tsearch(3)

HISTORY
     The lsearch() and lfind() functions appeared in 4.2BSD.  In FreeBSD 5.0, they reappeared conforming to
     IEEE Std 1003.1-2001 (``POSIX.1'').

STANDARDS
     The lsearch() and lfind() functions conform to IEEE Std 1003.1-2001 (``POSIX.1'').

BSD                                           October 11, 2002                                           BSD

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation with the feedback links below.
Bug reports
Report bugs in the functionality of the described tool or API through Bug Reporter.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...