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.

See section getdate. 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.