https://github.com/git/git
Raw File
Tip revision: ea56f91275c1797776f10f4ac5d65671bb4f3e8b authored by Johannes Schindelin on 11 March 2023, 16:54:15 UTC
Git 2.31.8
Tip revision: ea56f91
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