b64/encode.h

10 lines
174 B
C

#ifndef HEADER_ENCODE
#define HEADER_ENCODE
int
encode(unsigned char *op, int olen, unsigned char *sp);
int
decode(unsigned char *sp, int slen, unsigned char *op);
#endif