setbuf.c 123 B

123456
  1. #include <stdio.h>
  2. void setbuf(FILE *restrict f, char *restrict buf)
  3. {
  4. setvbuf(f, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
  5. }