https://github.com/git/git
Raw File
Tip revision: 468165c1d8a442994a825f3684528361727cd8c0 authored by Junio C Hamano on 02 April 2018, 17:13:35 UTC
Git 2.17
Tip revision: 468165c
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