Staging
v0.5.1
Revision b0ec16b49eb283156e13bbef26466d948e4fd992 authored by Junio C Hamano on 01 October 2012, 20:09:47 UTC, committed by Junio C Hamano on 01 October 2012, 20:09:47 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent abc05cb
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