home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / libsrc / c / dos / gettime.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-04  |  235 b   |  13 lines

  1. #include <dos.h>
  2.  
  3. void gettime( struct time *tp)
  4. {
  5.   union REGS regs;
  6.   regs.h.ah = 0x2c;
  7.   intdos( ®s, ®s);
  8.   tp->ti_hour = regs.h.ch;
  9.   tp->ti_min = regs.h.cl;
  10.   tp->ti_sec = regs.h.dh;
  11.   tp->ti_hund = regs.h.dl;
  12. }
  13.