Revision 79192b87ad6a57e2b2a6219f0a17e85ece759c0f authored by Michael Haggerty on 05 March 2014, 17:26:27 UTC, committed by Junio C Hamano on 05 March 2014, 20:33:46 UTC
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 17e22dd
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