Revision cb682f8cfe63ecd0da08a526f404d295e51e3ab1 authored by Junio C Hamano on 16 June 2014, 19:39:35 UTC, committed by Junio C Hamano on 16 June 2014, 19:39:35 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 7e1a538
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