Permalink
Cannot retrieve contributors at this time
7 lines (5 sloc)
154 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef VARINT_H | |
#define VARINT_H | |
int encode_varint(uintmax_t, unsigned char *); | |
uintmax_t decode_varint(const unsigned char **); | |
#endif /* VARINT_H */ |