function lfds710_hash_a_iterate_init

From liblfds.org
Jump to navigation Jump to search

Source Files

└───liblfds710
    ├───inc
    │   └───liblfds710
    │           lfds710_hash_addonly.h
    └───src
        └───llfds710_hash_addonly
                lfds710_hash_addonly_iterate.c

Opaque Structures

struct lfds710_hash_a_iterate;
struct lfds710_hash_a_state;

Prototype

void lfds710_hash_a_iterate_init( struct lfds710_hash_a_state *has, struct lfds710_hash_a_iterate *hai );

Parameters

struct lfds710_hash_a_state *has

A pointer to an initialized struct lfds710_hash_a_state.

struct lfds710_hash_a_iterate *hai

A pointer to a user-allocated struct lfds710_hash_a_iterate, which is initialized by this function.

Notes

This function initializes a hash iterator. After initialization, lfds710_hash_a_iterate can be called to iterate.

See Also