File: btree_cache.h

package info (click to toggle)
sarg 2.4.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,456 kB
  • sloc: ansic: 17,692; sh: 4,581; xml: 371; javascript: 352; php: 205; makefile: 183; sed: 16; pascal: 2
file content (9 lines) | stat: -rw-r--r-- 215 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
#ifndef BTREE_CACHE_H
#define BTREE_CACHE_H

void init_cache(void);
void destroy_cache(void);
char *search_in_cache(const char *key);
int insert_to_cache(const char *key, const char *value);

#endif //BTREE_CACHE_H