https://github.com/git/git
Raw File
Tip revision: 0bbcf951943eefbbfee2a7e08b7150bef5b60562 authored by Johannes Schindelin on 06 February 2023, 08:24:07 UTC
Git 2.31.7
Tip revision: 0bbcf95
varint.h
#ifndef VARINT_H
#define VARINT_H

int encode_varint(uintmax_t, unsigned char *);
uintmax_t decode_varint(const unsigned char **);

#endif /* VARINT_H */
back to top