mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
e60f749b60
Removing all trailing whitespaces in befs. I was skeptic about tainting the history with this, but whitespace changes can be ignored by using 'git blame -w' and 'git log -w'. Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
12 lines
304 B
C
12 lines
304 B
C
/*
|
|
* 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);
|