Staging
v0.5.1
Revision 4384e3cde2ce8ecd194202e171ae16333d241326 authored by Junio C Hamano on 04 August 2017, 16:31:12 UTC, committed by Junio C Hamano on 04 August 2017, 16:31:12 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 62ebe03
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