https://github.com/git/git
Revision 5f38e5eccb4dbcbd87fd6df9dec9939e310bcc9d authored by Ralf Thielow on 24 September 2012, 17:16:21 UTC, committed by Ralf Thielow on 27 September 2012, 18:58:51 UTC
Noticed-by: Sascha Cunz <sascha-ml@babbelbox.org>
Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
1 parent 871e293
Raw File
Tip revision: 5f38e5eccb4dbcbd87fd6df9dec9939e310bcc9d authored by Ralf Thielow on 24 September 2012, 17:16:21 UTC
l10n: de.po: correct translation of a 'rebase' message
Tip revision: 5f38e5e
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