Staging
v0.5.1
https://github.com/git/git
Revision 225365fb5195e804274ab569ac3cc4919451dc7f authored by Junio C Hamano on 26 February 2021, 00:34:59 UTC, committed by Junio C Hamano on 26 February 2021, 00:43:33 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 1400458
Raw File
Tip revision: 225365fb5195e804274ab569ac3cc4919451dc7f authored by Junio C Hamano on 26 February 2021, 00:34:59 UTC
Git 2.31-rc0
Tip revision: 225365f
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