Code & Deploy
Code
Models
Repos
Sign in
@leroysheep
/
MovieWebApp
MovieWebApp
/
base85.h
Code
Commits
Pulls
CI/CD
82,027
next
bisect
jch
maint
master
next
seen
test
todo
h
7 lines
180 Bytes
Copy permalink
Copy
Raw
1
#ifndef BASE85_H
2
#define BASE85_H
3
4
int
decode_85
(
char
*
dst
,
const
char
*
line
,
int
linelen
);
5
void
encode_85
(
char
*
buf
,
const
unsigned
char
*
data
,
int
bytes
);
6
7
#endif
/* BASE85_H */