You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef VARINT_H |
|
#define VARINT_H |
|
|
|
int encode_varint(uintmax_t, unsigned char *); |
|
uintmax_t decode_varint(const unsigned char **); |
|
|
|
#endif /* VARINT_H */
|
|
|