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

  1. jzgettim( ftime )
  2. char *ftime;
  3. {
  4.   union REGS winreg,woutreg;
  5.  
  6.   winreg.h.ah = 0x2c;
  7.   intdos(&winreg,&woutreg);
  8.   sprintf(ftime,"%02d:%02d:%02d",woutreg.h.ch,woutreg.h.cl,woutreg.h.dh);
  9. }
  10.  
  11.