nckernel  0.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ston.h
Go to the documentation of this file.
1 
19 struct ston;
20 
21 struct ston_ops {
22  void *(*create)(const void *key);
23  int (*destroy)(void *item);
25  int (*compare)(const void *key_a, const void *key_b);
26 };
27 
33 extern struct ston *ston_init(struct ston_ops *ops);
34 
40 extern int ston_fini(struct ston *ston);
41 
48 extern void *ston_create(struct ston *ston, const void *key);
49 
56 extern int ston_destroy(struct ston *ston, void *obj);
57 
58 /* @} End of a file */