https://github.com/git/git
Revision 0f158320593bd57fe2c3fe55fbce751e9415ffc2 authored by Johannes Schindelin on 10 April 2024, 19:06:57 UTC, committed by Johannes Schindelin on 19 April 2024, 10:38:43 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent f5b2af0
Raw File
Tip revision: 0f158320593bd57fe2c3fe55fbce751e9415ffc2 authored by Johannes Schindelin on 10 April 2024, 19:06:57 UTC
Git 2.41.1
Tip revision: 0f15832
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