Buffers are no longer wired into any input or translation functions. They are supplied as arguments through main.
10 lines
172 B
C
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
|