https://github.com/git/git
Raw File
Tip revision: da0bf45e8d232f355eab0c95d0ef9b2800b9f2a8 authored by Junio C Hamano on 31 May 2024, 00:33:49 UTC
Sync with 'master'
Tip revision: da0bf45
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