function lfds711_hash_a_iterate_init

From liblfds.org
Jump to navigation Jump to search

Source Files

└───liblfds711
    ├───inc
    │   └───liblfds711
    │           lfds711_hash_addonly.h
    └───src
        └───llfds711_hash_addonly
                lfds711_hash_addonly_iterate.c

Opaque Structures

struct lfds711_hash_a_iterate;
struct lfds711_hash_a_state;

Prototype

void lfds711_hash_a_iterate_init( struct lfds711_hash_a_state *has, struct lfds711_hash_a_iterate *hai );

Parameters

struct lfds711_hash_a_state *has

A pointer to an initialized struct lfds711_hash_a_state.

struct lfds711_hash_a_iterate *hai

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

Notes

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

See Also