https://github.com/git/git
Raw File
Tip revision: 03df4959472e7d4b5117bb72ac86e1e2bcf21723 authored by Junio C Hamano on 28 March 2018, 18:05:14 UTC
Git 2.17-rc2
Tip revision: 03df495
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