Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: f900c8326a43303685c46b279b9f70411bff1a4b authored by Junio C Hamano on 15 December 2015, 17:47:11 UTC
Git 2.7-rc1
Tip revision: f900c83
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