Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 5d213e46bb7b880238ff5ea3914e940a50ae9369 authored by Junio C Hamano on 11 August 2021, 18:54:03 UTC
Git 2.33-rc2
Tip revision: 5d213e4
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