]> git.ipfire.org Git - thirdparty/sarg.git/blob - include/btree_cache.h
Update ChangeLog and add a release procedure
[thirdparty/sarg.git] / include / btree_cache.h
1 #ifndef BTREE_CACHE_H
2 #define BTREE_CACHE_H
3
4 void init_cache(void);
5 void destroy_cache(void);
6 char *search_in_cache(const char *key);
7 int insert_to_cache(const char *key, const char *value);
8
9 #endif //BTREE_CACHE_H