mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-10 06:18:06 +01:00
13 lines
169 B
C
13 lines
169 B
C
|
#ifndef __HASH_MAP_TEST__
|
||
|
#define __HASH_MAP_TEST__
|
||
|
|
||
|
#include <assert.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include "libcproject.h"
|
||
|
|
||
|
void hash_map_test();
|
||
|
|
||
|
#endif
|