Staging
v0.5.1
https://github.com/git/git
Revision 4224916ae979204f13db2996d9e32490e0acb90f authored by Junio C Hamano on 13 January 2014, 19:28:26 UTC, committed by Junio C Hamano on 13 January 2014, 19:28:26 UTC
1 parent 7fd90e0
Raw File
Tip revision: 4224916ae979204f13db2996d9e32490e0acb90f authored by Junio C Hamano on 13 January 2014, 19:28:26 UTC
Git 1.8.5.3
Tip revision: 4224916
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