home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / stdio / fputs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  217 b   |  19 lines

  1.  
  2. /*
  3.  *  fputs.c
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <stdio.h>
  9.  
  10. int
  11. fputs(ptr, fi)
  12. const char *ptr;
  13. FILE *fi;
  14. {
  15.     fwrite(ptr, strlen(ptr), 1, fi);
  16.     return(fi->sd_Error);
  17. }
  18.  
  19.