You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/*
|
|
* btree.h
|
|
*
|
|
*/
|
|
|
|
|
|
int befs_btree_find(struct super_block *sb, befs_data_stream * ds,
|
|
const char *key, befs_off_t * value);
|
|
|
|
int befs_btree_read(struct super_block *sb, befs_data_stream * ds,
|
|
loff_t key_no, size_t bufsize, char *keybuf,
|
|
size_t * keysize, befs_off_t * value);
|
|
|
|
|