Revision 03969dff8f6ab2e399df7e156c72d5b965388d2f authored by Junio C Hamano on 28 October 2016, 16:01:10 UTC, committed by Junio C Hamano on 28 October 2016, 16:01:10 UTC
Shorten description of auto-following in "git tag" by removing a
mention of historical remotes layout which is not relevant to the
main topic.

* yk/git-tag-remove-mention-of-old-layout-in-doc:
  doc: remove reference to the traditional layout in git-tag.txt
2 parent s 23415c2 + 749a227
Raw File
varint.h
#ifndef VARINT_H
#define VARINT_H

extern int encode_varint(uintmax_t, unsigned char *);
extern uintmax_t decode_varint(const unsigned char **);

#endif /* VARINT_H */
back to top