home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / JAZLIB / JZPUTPRN.C < prev    next >
Text File  |  1993-12-01  |  165b  |  13 lines

  1. #include <jaz.h>
  2. jzputprn(fch)
  3. int fch;
  4. {
  5.   TREG wreg;
  6.  
  7.   wreg.h.ah = 0;
  8.   wreg.h.al = fch;
  9.   wreg.x.dx = 0;
  10.   intr(0x17,&wreg);
  11.   return(wreg.x.ax);
  12. }
  13.