ReactOS 0.4.16-dev-2104-gb84fa49
search.h File Reference
#include <corecrt.h>
Include dependency graph for search.h:

Go to the source code of this file.

Functions

_ACRTIMP void *__cdecl _lfind (const void *, const void *, unsigned int *, unsigned int, int(__cdecl *)(const void *, const void *))
 
_ACRTIMP void *__cdecl _lsearch (const void *, void *, unsigned int *, unsigned int, int(__cdecl *)(const void *, const void *))
 
_ACRTIMP void *__cdecl bsearch (const void *, const void *, size_t, size_t, int(__cdecl *)(const void *, const void *))
 
_ACRTIMP void __cdecl qsort (void *, size_t, size_t, int(__cdecl *)(const void *, const void *))
 
static voidlfind (const void *match, const void *start, unsigned int *array_size, unsigned int elem_size, int(__cdecl *cf)(const void *, const void *))
 
static voidlsearch (const void *match, void *start, unsigned int *array_size, unsigned int elem_size, int(__cdecl *cf)(const void *, const void *))
 

Function Documentation

◆ _lfind()

_ACRTIMP void *__cdecl _lfind ( const void ,
const void ,
unsigned int ,
unsigned int  ,
int(__cdecl *)(const void *, const void *)   
)

Referenced by _lsearch(), and lfind().

◆ _lsearch()

_ACRTIMP void *__cdecl _lsearch ( const void ,
void ,
unsigned int ,
unsigned int  ,
int(__cdecl *)(const void *, const void *)   
)

Referenced by lsearch().

◆ bsearch()

_ACRTIMP void *__cdecl bsearch ( const void ,
const void ,
size_t  ,
size_t  ,
int(__cdecl *)(const void *, const void *)   
)

◆ lfind()

static void * lfind ( const void match,
const void start,
unsigned int array_size,
unsigned int  elem_size,
int(__cdecl *cf)(const void *, const void *)   
)
inlinestatic

Definition at line 39 of file search.h.

40 { return _lfind(match, start, array_size, elem_size, cf); }
_ACRTIMP void *__cdecl _lfind(const void *, const void *, unsigned int *, unsigned int, int(__cdecl *)(const void *, const void *))
GLuint start
Definition: gl.h:1545
static UINT array_size
Definition: msctf.cpp:39
Definition: match.c:28

◆ lsearch()

static void * lsearch ( const void match,
void start,
unsigned int array_size,
unsigned int  elem_size,
int(__cdecl *cf)(const void *, const void *)   
)
inlinestatic

Definition at line 41 of file search.h.

42 { return _lsearch(match, start, array_size, elem_size, cf); }
_ACRTIMP void *__cdecl _lsearch(const void *, void *, unsigned int *, unsigned int, int(__cdecl *)(const void *, const void *))

◆ qsort()