function lfds711_list_aso_get_by_key

From liblfds.org
Revision as of 18:11, 16 February 2017 by Admin (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Source Files

└───liblfds711
    ├───inc
    │   └───liblfds711
    │           lfds711_list_addonly_singlylinked_ordered.h
    └───src
        └───llfds711_list_addonly_singlylinked_ordered
                lfds711_list_addonly_singlylinked_ordered_get.c

Opaque Structures

struct lfds711_list_aso_element;
struct lfds711_list_aso_state;

Prototype

int lfds711_list_aso_get_by_key( struct lfds711_list_aso_state *lasos,
                                 void *key,
                                 struct lfds711_list_aso_element **lasoe );

Parameters

struct lfds711_list_aso_state *lasos

A pointer to an initialized struct lfds711_list_aso_state.

void *key

A pointer to the key to find in the list.

struct lfds711_list_aso_element **lasoe

Set to point to the element containing key, or NULL if this key does not exist in the list.

Return Value

Returns 1 if an element with key is found, otherwise returns 0.

Notes

Iterates over the list, searching for the element with key key.

See Also