Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.17-rc3 11 lines 318 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _BCACHEFS_VARINT_H 3#define _BCACHEFS_VARINT_H 4 5int bch2_varint_encode(u8 *, u64); 6int bch2_varint_decode(const u8 *, const u8 *, u64 *); 7 8int bch2_varint_encode_fast(u8 *, u64); 9int bch2_varint_decode_fast(const u8 *, const u8 *, u64 *); 10 11#endif /* _BCACHEFS_VARINT_H */