1b593e1ea4
git-subtree-dir: third_party/git git-subtree-split: cb715685942260375e1eb8153b0768a376e4ece7
7 lines
154 B
C
7 lines
154 B
C
#ifndef VARINT_H
|
|
#define VARINT_H
|
|
|
|
int encode_varint(uintmax_t, unsigned char *);
|
|
uintmax_t decode_varint(const unsigned char **);
|
|
|
|
#endif /* VARINT_H */
|