https://github.com/git/git
Revision e004fd6b6985731248a2d86525e44041fb0f08a2 authored by Junio C Hamano on 16 May 2021, 12:05:24 UTC, committed by Junio C Hamano on 16 May 2021, 12:05:24 UTC
* ls/typofix:
  pretty: fix a typo in the documentation for %(trailers)
2 parent s a8a2491 + e6f68f6
Raw File
Tip revision: e004fd6b6985731248a2d86525e44041fb0f08a2 authored by Junio C Hamano on 16 May 2021, 12:05:24 UTC
Merge branch 'ls/typofix'
Tip revision: e004fd6
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