#include <dos.h> void getdate(struct date *);
This function gets the current date. The return structure is as follows:
struct date { short da_year; char da_day; char da_mon; };
See section setdate. See section gettime.
None.
not ANSI, not POSIX
struct date d; getdate(&d);
Go to the first, previous, next, last section, table of contents.