https://github.com/git/git
Raw File
Tip revision: 0df2c180904f6b709766f9c24669a9d01543f915 authored by Junio C Hamano on 15 May 2023, 20:58:34 UTC
Git 2.41-rc0
Tip revision: 0df2c18
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