Small correction to README file.
This commit is contained in:
parent
c016cd0af3
commit
dfce864f16
14
README.md
14
README.md
@ -400,15 +400,15 @@ errno_t hash_set_dump(
|
|||||||
* `instance`
|
* `instance`
|
||||||
A pointer to the hash set instance to be examined, as returned by the [hash_set_create()](#hash_set_create) function.
|
A pointer to the hash set instance to be examined, as returned by the [hash_set_create()](#hash_set_create) function.
|
||||||
|
|
||||||
* `capacity`
|
* `callback`
|
||||||
A pointer to the callback function that will be invoked once for every "slot" of the hash set.
|
A pointer to the callback function that will be invoked once for every "slot" in the hash set.
|
||||||
|
|
||||||
```C
|
```C
|
||||||
int callback(
|
int callback(
|
||||||
const size_t index,
|
const size_t index,
|
||||||
const char status,
|
const char status,
|
||||||
const value_t value
|
const value_t value
|
||||||
);
|
);
|
||||||
```
|
```
|
||||||
##### Parameters
|
##### Parameters
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user