Tinyhash
This is a library containing multiple C implementations of hashmap.
Loading...
Searching...
No Matches
types.h
Go to the documentation of this file.
1#ifndef __TINYHASH_COMMON_TYPES_H__
2#define __TINYHASH_COMMON_TYPES_H__
3
8typedef void *th_any_t;
9
14typedef void *th_generic_table_t;
15
16#endif
void * th_generic_table_t
Represents any table.
Definition types.h:14
void * th_any_t
Represent any type of data.
Definition types.h:8