https://github.com/git/git
Raw File
Tip revision: e6dfbcf12b0e70897818cb36903de0625931a5c6 authored by Junio C Hamano on 22 July 2012, 20:07:40 UTC
Git 1.7.11.3
Tip revision: e6dfbcf
varint.h
#ifndef VARINT_H
#define VARINT_H

#include "git-compat-util.h"

extern int encode_varint(uintmax_t, unsigned char *);
extern uintmax_t decode_varint(const unsigned char **);

#endif /* VARINT_H */
back to top