https://github.com/git/git
Raw File
Tip revision: ecaa3db17183b4a3895ccd0c0c1af01d0e6fed45 authored by Johannes Schindelin on 11 March 2023, 20:18:16 UTC
Git 2.36.6
Tip revision: ecaa3db
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