Revision 9f443f553171032d5ce004ae326ecb116a6ef4e5 authored by Jean-Noël Avila on 08 October 2020, 20:23:57 UTC, committed by Junio C Hamano on 08 October 2020, 21:01:19 UTC
In command line options, variables are entered between < and >

Signed-off-by: Jean-Noël Avila <jn.avila@free.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 89eed6f
Raw File
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