Revision 95d67879735cfecfdd85f89e59d993c5b4de8835 authored by Junio C Hamano on 05 May 2017, 04:33:22 UTC, committed by Junio C Hamano on 05 May 2017, 04:33:22 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent ebb1f6f
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