Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 589 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 589 Bytes

Simple Key-Value Store

Description

How to compile

gcc -o kv kv.c hashmap.c hashmap.h -Wall

Examples

./kv p,key1,value1 p,key2,value2 p,key3,value3
./kv g,key3

TODO

  • Reimplement the hashmap with a linked list
  • Use Valgrind to SOLVE the memory leaks