mirror of
https://github.com/git/git
synced 2024-11-05 04:53:18 +00:00
9b5041f647
Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
7 lines
180 B
C
7 lines
180 B
C
#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 */
|