Small correction to README file.

This commit is contained in:
LoRd_MuldeR 2022-11-29 17:35:03 +01:00
parent c016cd0af3
commit dfce864f16

View File

@ -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