File: base85.h

package info (click to toggle)
rust-git-cinnabar 0.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,192 kB
  • sloc: ansic: 302,330; makefile: 2,774; sh: 118
file content (7 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
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 */