1
0

putw.c 95 B

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