From 9b5041f647fa5d9921b9b4f8be6b36cb39591166 Mon Sep 17 00:00:00 2001 From: Elijah Newren Date: Sat, 22 Apr 2023 20:17:13 +0000 Subject: base85.h: move declarations for base85.c functions from cache.h Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano --- base85.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 base85.h (limited to 'base85.h') diff --git a/base85.h b/base85.h new file mode 100644 index 0000000000..c835086e09 --- /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 */ -- cgit v1.2.3