1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-06 04:06:14 +02:00
git/base85.h

8 lines
180 B
C
Raw Permalink Normal View History

#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 */