hash function

This commit is contained in:
2020-07-22 22:11:05 +02:00
parent ff58a623fe
commit de2c53f473
5 changed files with 16 additions and 5 deletions

View File

@ -1,5 +1,5 @@
#ifndef array_h
#define array_h
#ifndef _acl_array_h
#define _acl_array_h
#include <stddef.h>
size_t acl_arraylist_len(void *arraylist);
void acl_arraylist_free(void *arraylist);

View File

@ -1,5 +1,5 @@
#ifndef acl_file_h
#define acl_file_h
#ifndef _acl_file_h
#define _acl_file_h
#include <stdbool.h>
char* acl_ReadTextFile(const char *filePath, bool *sucess);
#endif

4
include/acl/hashmap.h Normal file
View File

@ -0,0 +1,4 @@
#ifndef _acl_hashmap_h
#define _acl_hashmap_h
unsigned hash(unsigned K);
#endif