Revision edaf10dd2613ae7fd4f366a10cc47ac78f3cc9e7 authored by Junio C Hamano on 24 February 2021, 20:26:40 UTC, committed by Junio C Hamano on 24 February 2021, 23:21:25 UTC
All other references to blame.* configuration variables are
camelCased already.  Update this one to match.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 77645b5
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