Staging
v0.5.1
https://github.com/git/git
Revision 27dea4683b608c5c0487dee74cbda13b62803b73 authored by Junio C Hamano on 22 September 2017, 05:42:22 UTC, committed by Junio C Hamano on 22 September 2017, 05:42:22 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent dca89d4
Raw File
Tip revision: 27dea4683b608c5c0487dee74cbda13b62803b73 authored by Junio C Hamano on 22 September 2017, 05:42:22 UTC
Git 2.10.5
Tip revision: 27dea46
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