Revision f86a3747abc742359397e3050b1fbef297415de5 authored by Stefan Beller on 31 March 2015, 01:22:10 UTC, committed by Junio C Hamano on 13 April 2015, 04:45:27 UTC
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 52735a6
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