mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-23 00:00:02 +03:00
This moves the Rust sources out of rust_src/ and into the top level. Running the bcachefs executable out of the development tree is now: $ ./target/release/bcachefs command or $ cargo run --profile release -- command instead of "./bcachefs command". Building and installing is still: $ make && make install Signed-off-by: Thomas Bertschinger <tahbertschinger@gmail.com> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
12 lines
318 B
C
12 lines
318 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 *);
|
|
|
|
int bch2_varint_encode_fast(u8 *, u64);
|
|
int bch2_varint_decode_fast(const u8 *, const u8 *, u64 *);
|
|
|
|
#endif /* _BCACHEFS_VARINT_H */
|