mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-02 00:00:03 +03:00
9 lines
217 B
C
9 lines
217 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
#ifndef _BCACHEFS_VARINT_H
|
||
|
#define _BCACHEFS_VARINT_H
|
||
|
|
||
|
int bch2_varint_encode(u8 *, u64);
|
||
|
int bch2_varint_decode(const u8 *, const u8 *, u64 *);
|
||
|
|
||
|
#endif /* _BCACHEFS_VARINT_H */
|