home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / FPUTS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-25  |  384 b   |  15 lines

  1.  
  2. #define NOCCARGC
  3. #include stdio.h
  4. #include clib.def
  5. /*
  6. ** Write a string to fd.
  7. ** Entry: string  = Pointer to null-terminated string
  8. **        fd      = File descriptor of pertinent file.
  9. */
  10. fputs(string,fd) char *string; int fd; {
  11.   while(*string)
  12.     fputc(*string++,fd);
  13.   }
  14.  
  15.