Revision 1f2e64e22dee75db96b92d526d14003ba59a154e authored by Johannes Schindelin on 10 April 2024, 20:04:50 UTC, committed by Johannes Schindelin on 19 April 2024, 10:38:52 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 8e97ec3
Raw File
base85.h
#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 */
back to top