Skip to main content

Name

echash_init — Initialize a hash table

Synopsis

#include "echash.h"

| void **echash_init** ( | h); |   |

ec_hash_table * <var class="pdparam">h</var>;

Description

Initialize a hash table. You must first create a hash table using echash_create.

Parameters

h

A hash table created using echash_create.

Return Values

This function returns void.

Threading

It is legal to call this function in any thread.

The hash table data structure is not thread safe; any simultaneous access needs to be coordinated by the API consumer.

See Also

Was this page helpful?