b64/input.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

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