Revision b927c80531cca9b9107754186532e8cb00884008 authored by Junio C Hamano on 22 October 2020, 22:07:25 UTC, committed by Junio C Hamano on 22 October 2020, 22:07:25 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 380ba99
Raw File
varint.h
#ifndef VARINT_H
#define VARINT_H

int encode_varint(uintmax_t, unsigned char *);
uintmax_t decode_varint(const unsigned char **);

#endif /* VARINT_H */
back to top