https://github.com/git/git
Raw File
Tip revision: 8c8e978f5719c6a58fb998742207bf907f963143 authored by Junio C Hamano on 24 June 2017, 22:31:36 UTC
Git 2.13.2
Tip revision: 8c8e978
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