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.
This commit is contained in:
Eric 2025-05-28 23:24:05 +02:00
parent 3194981825
commit f0577d8ea0
4 changed files with 58 additions and 71 deletions

View file

@ -3,9 +3,6 @@
#include <stdio.h>
int
getocts(FILE *fp, unsigned char *o);
int
getsxts(FILE *fp, unsigned char *s);