Staging
v0.5.1
Revision edca4152560522a431a51fc0a06147fc680b5b18 authored by Junio C Hamano on 24 May 2013, 18:34:46 UTC, committed by Junio C Hamano on 24 May 2013, 18:34:46 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 5e49f30
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