commit | 9b5041f647fa5d9921b9b4f8be6b36cb39591166 | [log] [tgz] |
---|---|---|
author | Elijah Newren <newren@gmail.com> | Sat Apr 22 20:17:13 2023 +0000 |
committer | Junio C Hamano <gitster@pobox.com> | Mon Apr 24 12:47:32 2023 -0700 |
tree | 1155c7d5e2e45383044d914af051b06c00d1539e | |
parent | d5fff46f4025e23ec61b9d74eac2bb19e7a2385d [diff] [blame] |
base85.h: move declarations for base85.c functions from cache.h Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff --git a/base85.h b/base85.h new file mode 100644 index 0000000..c835086 --- /dev/null +++ b/base85.h
@@ -0,0 +1,7 @@ +#ifndef BASE85_H +#define BASE85_H + +int decode_85(char *dst, const char *line, int linelen); +void encode_85(char *buf, const unsigned char *data, int bytes); + +#endif /* BASE85_H */