https://github.com/git/git
Raw File
Tip revision: 0f158320593bd57fe2c3fe55fbce751e9415ffc2 authored by Johannes Schindelin on 10 April 2024, 19:06:57 UTC
Git 2.41.1
Tip revision: 0f15832
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