start working on runtime

This commit is contained in:
2025-06-20 02:50:05 +01:00
parent e5e4f22481
commit bddfb59886
7 changed files with 55 additions and 10 deletions

View File

@@ -1,15 +1,17 @@
#ifndef HASHMAP_H
#define HASHMAP_H
#include <stdlib.h>
struct node
{
int key;
size_t key;
void *val;
struct node *next;
};
struct table
{
int size;
size_t size;
size_t count;
struct node **list;
};