str_echo_stdio02.c 219 B

123456789101112131415
  1. #include "unp.h"
  2. void
  3. str_echo(int sockfd)
  4. {
  5. char line[MAXLINE];
  6. FILE *fpin, *fpout;
  7. fpin = Fdopen(sockfd, "r");
  8. fpout = Fdopen(sockfd, "w");
  9. while (Fgets(line, MAXLINE, fpin) != NULL)
  10. Fputs(line, fpout);
  11. }