https://github.com/git/git
Raw File
Tip revision: d19b6cd2dd72dc811f19df4b32c7ed223256c3ee authored by Junio C Hamano on 18 July 2024, 15:23:53 UTC
Git 2.46-rc1
Tip revision: d19b6cd
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