home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 11 / 11.iso / m / m242 / 1.ddi / SOURCE.ZIP / DOSSTR.C < prev    next >
Encoding:
Text File  |  1989-10-16  |  241 b   |  11 lines

  1. void dosstr(prtstr)   /* print a string to the standard printer device */
  2. char *prtstr;    /* string to print */
  3. {
  4.     while(*prtstr){
  5.         if (*prtstr != '\n'){
  6.             doschar(*prtstr);
  7.         }
  8.         prtstr++;
  9.     }
  10. }
  11.