Revision a199a7c9d07fa883fa219775c0e6069aeb84cdf3 authored by David Turner on 04 July 2016, 06:05:24 UTC, committed by Junio C Hamano on 06 July 2016, 17:57:01 UTC
Signed-off-by: David Turner <novalis@novalis.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 2ff7dff
Raw File
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