Skip to content

Instantly share code, notes, and snippets.

@1devm0
1devm0 / table.c
Last active December 3, 2023 05:45
A Hash Table in C
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
typedef uint8_t u08;
typedef uint32_t u32;
typedef uint64_t u64;
typedef int32_t i32;