b64/trans.h
Eric 848c3749d2 change function definitions
Buffers are no longer wired into any input or translation functions.
They are supplied as arguments through main.
2025-05-26 12:23:54 +02:00

10 lines
172 B
C

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