https://github.com/git/git
Raw File
Tip revision: 7cdafcaacf677b9e0700fa988c247bda192db48d authored by Johannes Schindelin on 04 December 2019, 20:33:29 UTC
Git 2.15.4
Tip revision: 7cdafca
varint.h
#ifndef VARINT_H
#define VARINT_H

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

#endif /* VARINT_H */
back to top