Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 3c3d3f629a6176b401ebec455c5dd59ed1b5f910 authored by Junio C Hamano on 16 October 2015, 21:40:04 UTC
Git 2.6.2
Tip revision: 3c3d3f6
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