https://github.com/git/git
Revision af40944bda352190f05d22b7cb8fe88beb17f3a7 authored by Junio C Hamano on 05 November 2015, 20:20:34 UTC, committed by Junio C Hamano on 05 November 2015, 20:20:34 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent b8f5242
Raw File
Tip revision: af40944bda352190f05d22b7cb8fe88beb17f3a7 authored by Junio C Hamano on 05 November 2015, 20:20:34 UTC
Git 2.6.3
Tip revision: af40944
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