Buffers are no longer wired into any input or translation functions. They are supplied as arguments through main.
12 lines
174 B
C
12 lines
174 B
C
#ifndef HEADER_INPUT
|
|
#define HEADER_INPUT
|
|
|
|
#include <stdio.h>
|
|
|
|
int
|
|
getocts(FILE *fp, unsigned char *o, int olen);
|
|
|
|
int
|
|
getsxts(FILE *fp, unsigned char *s, int slen);
|
|
|
|
#endif
|