2022-11-30 16:41:14 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
/* HashSet for C99, by LoRd_MuldeR <MuldeR2@GMX.de> */
|
|
|
|
/* This work has been released under the CC0 1.0 Universal license! */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _TEST_TESTS_INCLUDED
|
|
|
|
#define _TEST_TESTS_INCLUDED
|
|
|
|
|
|
|
|
#include <hash_map.h>
|
|
|
|
|
|
|
|
int test_function_1(hash_map64_t *const hash_set);
|
2022-11-30 18:03:42 +01:00
|
|
|
int test_function_2(hash_map64_t *const hash_set);
|
|
|
|
int test_function_3(hash_map64_t *const hash_set);
|
2022-11-30 21:45:39 +01:00
|
|
|
int test_function_4(hash_map64_t *const hash_set);
|
2022-11-30 16:41:14 +01:00
|
|
|
|
|
|
|
#endif /*_TEST_TESTS_INCLUDED*/
|