getw.c 95 B

1234567
  1. #include <stdio.h>
  2. int getw(FILE *f)
  3. {
  4. int x;
  5. return fread(&x, sizeof x, 1, f) ? x : EOF;
  6. }