https://github.com/torvalds/linux
Raw File
Tip revision: 35a7f35ad1b150ddf59a41dcac7b2fa32982be0e authored by Greg Kroah-Hartman on 15 October 2018, 05:20:24 UTC
Linux 4.19-rc8
Tip revision: 35a7f35
btree.h
/* 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);
back to top