#include <dos.h> void gettime(struct time *);
This function gets the current time. The return structure is as follows:
struct time { unsigned char ti_min; unsigned char ti_hour; unsigned char ti_hund; unsigned char ti_sec; };
See section settime. See section getdate.
None.
not ANSI, not POSIX
struct time t; gettime(&t);
Go to the first, previous, next, last section, table of contents.