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.
12 lines
343 B
12 lines
343 B
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* btree.h
|
|
*
|
|
*/
|
|
|
|
int befs_btree_find(struct super_block *sb, const befs_data_stream *ds,
|
|
const char *key, befs_off_t *value);
|
|
|
|
int befs_btree_read(struct super_block *sb, const befs_data_stream *ds,
|
|
loff_t key_no, size_t bufsize, char *keybuf,
|
|
size_t *keysize, befs_off_t *value);
|
|
|