Staging
v0.5.1
Revision 6406bdc0b95715a087fdeeb0f6adf3deb80a25b8 authored by Junio C Hamano on 03 October 2016, 20:24:18 UTC, committed by Junio C Hamano on 03 October 2016, 20:24:18 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 11738dd
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