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

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