https://github.com/git/git
Raw File
Tip revision: cc7d11c16782041a6bb73e2fb56417b7d4c6d186 authored by Junio C Hamano on 30 May 2024, 23:52:52 UTC
Git 2.39.5
Tip revision: cc7d11c
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