brintos

brintos / linux-shallow public Read only

0
0
Text · 318 B · 92a182f Raw
12 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef _BCACHEFS_VARINT_H3#define _BCACHEFS_VARINT_H4 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 */12