Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: b06d3643105c8758ed019125a4399cb7efdcce2c authored by Junio C Hamano on 09 May 2017, 14:26:02 UTC
Git 2.13
Tip revision: b06d364
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