b64/input.h
Eric fa5095133a remove buffer size dependency from input functions
This should've been part of 848c37, when buffers were unwired from input
functions. Now buffer size is also no longer supplied in function calls
but assumed. It is up to the caller to provide appropriately sized
buffers.
2025-05-27 18:37:48 +02:00

12 lines
144 B
C

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