7 lines
95 B
C
7 lines
95 B
C
#include <stdio.h>
|
|
|
|
int getw(FILE *f)
|
|
{
|
|
int x;
|
|
return fread(&x, sizeof x, 1, f) ? x : EOF;
|
|
}
|