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.
12 lines
144 B
C
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
|