https://github.com/git/git
Raw File
Tip revision: 8989e1950a845ceeb186d490321a4f917ca4de47 authored by Junio C Hamano on 14 February 2019, 02:18:11 UTC
Git 2.21-rc1
Tip revision: 8989e19
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