Sign in
googlers
/
jrn
/
git
/
06d7abb13c1a948f376f05bbd708712c512e6e1b
/
.
/
varint.h
blob: 032119579694f6a82f3947bfafb05a801385cb5a [
file
] [
log
] [
blame
]
Junio C Hamano
d2c1898
2012-04-03 15:53:08 -0700
[
diff
] [
blame
]
1
#ifndef
VARINT_H
2
#define
VARINT_H
3
4
#include
"git-compat-util.h"
5
6
extern
int
encode_varint
(
uintmax_t
,
unsigned
char
*);
7
extern
uintmax_t
decode_varint
(
const
unsigned
char
**);
8
9
#endif
/* VARINT_H */