https://github.com/git/git
Raw File
Tip revision: dbecc617f75eea6ee5d05823a38b91223ff22b11 authored by Junio C Hamano on 30 May 2024, 23:57:31 UTC
Git 2.40.3
Tip revision: dbecc61
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