tree-diff: convert diff_root_tree_sha1() to just call diff_tree_sha1 with old=NULL
[git.git] / varint.h
blob032119579694f6a82f3947bfafb05a801385cb5a
1 #ifndef VARINT_H
2 #define VARINT_H
4 #include "git-compat-util.h"
6 extern int encode_varint(uintmax_t, unsigned char *);
7 extern uintmax_t decode_varint(const unsigned char **);
9 #endif /* VARINT_H */