*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->FreeBSD man pages -> lsearch (3)              
Title
Content
Arch
Section
 

LSEARCH(3)

Contents


NAME    [Toc]    [Back]

     lsearch, lfind -- linear search and append

LIBRARY    [Toc]    [Back]

     Standard C Library (libc, -lc)

SYNOPSIS    [Toc]    [Back]

     #include <search.h>

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

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

DESCRIPTION    [Toc]    [Back]

     The lsearch() and lfind() functions walk linearly through an array and
     compare each element with the one to be sought using 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    [Toc]    [Back]

     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    [Toc]    [Back]

      
      
     bsearch(3), hsearch(3), tsearch(3)

HISTORY    [Toc]    [Back]

     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    [Toc]    [Back]

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


FreeBSD 5.2.1		       October 11, 2002 		 FreeBSD 5.2.1
[ Back ]
 Similar pages
Name OS Title
lsearch IRIX linear search and update
lsearch Linux linear search of an array.
lfind Tru64 Perform a linear search and update
lsearch Tru64 Perform a linear search and update
append IRIX Append to variable
mvIsAppendOnly IRIX see if a movie instance is append-only
lappend IRIX Append list elements onto a variable
sticky OpenBSD sticky text and append-only directories
logwtmp FreeBSD append a new record to the wtmp file
sticky FreeBSD sticky text and append-only directories
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service