home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume12 / cnews / part01 / libc / stdio.fast / fputs.c next >
Encoding:
C/C++ Source or Header  |  1987-10-19  |  161 b   |  13 lines

  1. #include <stdio.h>
  2.  
  3. fputs(s, fp)
  4. register char *s;
  5. register FILE *fp;
  6. {
  7.     unsigned len = strlen(s);
  8.  
  9.     if (fwrite(s, 1, len, fp) < len)
  10.         return EOF;
  11.     return 0;
  12. }
  13.