b64/input.h
Eric f0577d8ea0 decrease encode time
The functions encode and decode are now capable of processing larger
buffers with less conditional logic. Input and output functions need to
follow suit to make better use of this next. Encode without line
wrapping already makes use of these improvements, because input and
output are now entirely handled by <stdio.h> functions.
2025-05-28 23:24:05 +02:00

9 lines
102 B
C

#ifndef INPUT_H
#define INPUT_H
#include <stdio.h>
int
getsxts(FILE *fp, unsigned char *s);
#endif