hashmapp.

This commit is contained in:
ari melody 2026-03-13 02:56:29 +00:00
commit e34fc0ca7f
Signed by: ari
GPG key ID: 60B5F0386E3DDB7E
5 changed files with 161 additions and 0 deletions

7
Makefile Normal file
View file

@ -0,0 +1,7 @@
.PHONY: hashmap
hashmap: main.c
$(CC) -o hashmap -g main.c hashmap.c
clean:
rm -rf hashmap