Skip to content

Latest commit

 

History

17 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Key Value Storage - Project Documentation

This project is a key value store that defines the following interface

kv_t    kv_init(size_t capacity);
int     kv_put(kv_t *db, const char *key, const char *value);
char  * kv_get(kv_t *db, const char *key);
int     kv_delete(kv_t *db, const char *key);
void    kv_free(kv_t *db);

About

Dictionary Project in C

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages