setdate()                Set MS-DOS Date
 
 #include   <dos.h>
 
 void         setdate(dateblk);
 struct date  *dateblk;
 
    setdate() sets the system date (month, day, and year) to that in the
    'date' structure pointed to by 'dateblk'.  The 'date' structure is
    defined as follows:
 
          struct date {
               int da_year;             /* Current year */
               char da_day;             /* Day of the month */
               char da_mon;             /* Month (1 = Jan) */
          };
 
    Returns:    There is no return value.

Seealso:



This page last updated on Fri Nov 30 10:48:32 MSK 2001
Copyright © 1992-2001, Vitaly Filatov, Moscow, Russia
Webmaster