Decoding input is read faster now. With this, all options have been tuned to a reasonable degree.
9 lines
110 B
C
9 lines
110 B
C
#ifndef INPUT_H
|
|
#define INPUT_H
|
|
|
|
#include <stdio.h>
|
|
|
|
int
|
|
readb(FILE *fp, unsigned char *s, int slen);
|
|
|
|
#endif
|