diff options
Diffstat (limited to 'third_party/git/varint.h')
-rw-r--r-- | third_party/git/varint.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/git/varint.h b/third_party/git/varint.h new file mode 100644 index 000000000000..f78bb0ca528d --- /dev/null +++ b/third_party/git/varint.h @@ -0,0 +1,7 @@ +#ifndef VARINT_H +#define VARINT_H + +int encode_varint(uintmax_t, unsigned char *); +uintmax_t decode_varint(const unsigned char **); + +#endif /* VARINT_H */ |