Name
echash_init — Initialize a hash table
Synopsis
#include "echash.h"
| void **echash_init** (
| h)
; | |
Description
Initialize a hash table. You must first create a hash table using echash_create.
- h
-
A hash table created using echash_create.
This function returns void.
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?