setlinebuf.c 111 B

123456789
  1. #include <stdio.h>
  2. void
  3. setlinebuf(FILE *f)
  4. {
  5. static char buf[BUFSIZ];
  6. setvbuf (f, buf, _IOLBF, BUFSIZ);
  7. }