xref: /original-bsd/lib/libcompat/4.1/ftime.3 (revision 982436bd)
Copyright (c) 1980 Regents of the University of California.
All rights reserved. The Berkeley software License Agreement
specifies the terms and conditions for redistribution.

@(#)ftime.3 6.2 (Berkeley) 05/17/89

FTIME 3C ""
C 4
NAME
ftime - get date and time
SYNOPSIS
 #include <sys/types.h>  #include <sys/timeb.h> 
 ftime(tp)  struct timeb *tp; 
DESCRIPTION
This interface is obsoleted by gettimeofday(2).

It is available from the compatibility library, libcompat.

The ftime routine fills in a structure pointed to by its argument, as defined by < sys/timeb.h >:

.so  /usr/include/sys/timeb.h

The structure contains the time since the epoch in seconds, up to 1000 milliseconds of more-precise interval, the local time zone (measured in minutes of time westward from Greenwich), and a flag that, if nonzero, indicates that Daylight Saving time applies locally during the appropriate part of the year.

"SEE ALSO"
gettimeofday(2), settimeofday(2), time(2), ctime(3)