Revision 4d0b43aa765a0056c88381eea862364c95e358ca authored by Johannes Schindelin on 17 March 2022, 09:57:52 UTC, committed by Johannes Schindelin on 23 March 2022, 23:31:36 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 93fbff0
Raw File
varint.h
#ifndef VARINT_H
#define VARINT_H

int encode_varint(uintmax_t, unsigned char *);
uintmax_t decode_varint(const unsigned char **);

#endif /* VARINT_H */
back to top