Revision 42817b96b1b80b56fd5a4d5e0d6239524b1832a3 authored by Junio C Hamano on 30 October 2013, 19:17:47 UTC, committed by Junio C Hamano on 30 October 2013, 19:17:47 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 05ad292
Raw File
varint.h
#ifndef VARINT_H
#define VARINT_H

#include "git-compat-util.h"

extern int encode_varint(uintmax_t, unsigned char *);
extern uintmax_t decode_varint(const unsigned char **);

#endif /* VARINT_H */
back to top