Staging
v0.5.1
swh:1:snp:c5feb7ee9221a3820c8879e85e8a18470c0b3afa
Raw File
Tip revision: ab84621754e9c6f05279b42e51b445baac28a8ea authored by Junio C Hamano on 13 May 2013, 18:09:42 UTC
Git 1.8.3-rc2
Tip revision: ab84621
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