https://github.com/git/git
Raw File
Tip revision: 3a19048ce498d519bd564c9fd222161dca789321 authored by Johannes Schindelin on 11 March 2023, 19:29:33 UTC
Git 2.33.8
Tip revision: 3a19048
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