Go to the first, previous, next, last section, table of contents.


setdate

Syntax

#include <dos.h>

void setdate(struct date *ptr);

Description

This function sets the current time.

For the description of struct date, see section getdate. Also see section settime.

Return Value

None.

Portability

not ANSI, not POSIX

Example

struct date d;
setdate(&d);


Go to the first, previous, next, last section, table of contents.