Staging
v0.5.1
Revision 83332636f575f00edff8f3afb15a2f96885bf417 authored by Junio C Hamano on 17 December 2014, 19:22:32 UTC, committed by Junio C Hamano on 17 December 2014, 19:22:32 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 6898b79
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