Skip to content

Instantly share code, notes, and snippets.

@dguise08
dguise08 / hashtable.c
Created August 22, 2020 18:08 — forked from phsym/hashtable.c
An hashtable implementation in C
/*
* Author : Pierre-Henri Symoneaux
*/
#include <stdlib.h>
#include <string.h>
//Hashtable element structure
typedef struct hash_elem_t {
struct hash_elem_t* next; // Next element in case of a collision