Revision 82689d5e5d3f41da2ab1fbf9fbe7aacfd6da74c1 authored by Junio C Hamano on 13 December 2022, 12:04:03 UTC, committed by Junio C Hamano on 13 December 2022, 12:04:03 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 1612876
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