home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / c / pictor15 / libsrc / wputs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-15  |  269 b   |  19 lines

  1. /*
  2. ** wputs.c
  3. **
  4. ** Pictor, Version 1.51, Copyright (c) 1992-94 SoftCircuits
  5. ** Redistributed by permission.
  6. */
  7.  
  8. #include "pictor.h"
  9.  
  10. /*
  11. ** Writes a string to the current window.
  12. */
  13. void wputs(char *str)
  14. {
  15.     while(*str)
  16.         wputc(*str++);
  17.  
  18. } /* wputs */
  19.