]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/ftime.3
Wrapped long lines, wrapped at sentence boundaries; stripped trailing
[thirdparty/man-pages.git] / man3 / ftime.3
CommitLineData
fea681da
MK
1.\" Hey Emacs! This file is -*- nroff -*- source.
2.\"
3.\" Copyright (c) 1993 Michael Haardt
4.\" (michael@moria.de)
5.\" Fri Apr 2 11:32:09 MET DST 1993
6.\"
7.\" This is free documentation; you can redistribute it and/or
8.\" modify it under the terms of the GNU General Public License as
9.\" published by the Free Software Foundation; either version 2 of
10.\" the License, or (at your option) any later version.
11.\"
12.\" The GNU General Public License's references to "object code"
13.\" and "executables" are to be interpreted as the output of any
14.\" document formatting or typesetting system, including
15.\" intermediate and printed output.
16.\"
17.\" This manual is distributed in the hope that it will be useful,
18.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
19.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20.\" GNU General Public License for more details.
21.\"
22.\" You should have received a copy of the GNU General Public
23.\" License along with this manual; if not, write to the Free
24.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
25.\" USA.
26.\"
27.\" Modified Sat Jul 24 14:23:14 1993 by Rik Faith (faith@cs.unc.edu)
28.\" Modified Sun Oct 18 17:31:43 1998 by Andries Brouwer (aeb@cwi.nl)
29.\"
30.TH FTIME 3 2001-12-14 "Linux" "Linux Programmer's Manual"
31.SH NAME
32ftime \- return date and time
33.SH SYNOPSIS
34.B "#include <sys/timeb.h>"
35.sp
36.BI "int ftime(struct timeb *" tp );
37.SH DESCRIPTION
38Return current date and time in
39.IR tp ,
40which is declared as follows:
41.sp
42.in +1i
43.nf
44struct timeb {
7295b7ed
MK
45 time_t time;
46 unsigned short millitm;
47 short timezone;
48 short dstflag;
fea681da
MK
49};
50.fi
51.in -1i
52.LP
53Here \fItime\fP is the number of seconds since the epoch,
54\fImillitm\fP is the number of milliseconds since \fItime\fP
55seconds since the epoch, \fItimezone\fP is the local time zone
56measured in minutes of time west of Greenwich, and \fIdstflag\fP
f59a3f19 57is a flag that, if non-zero, indicates that Daylight Saving time
fea681da
MK
58applies locally during the appropriate part of the year.
59.LP
60These days the contents of the \fItimezone\fP and \fIdstflag\fP
61fields are undefined.
62.SH "RETURN VALUE"
63This function always returns 0.
64.SH BUGS
c13182ef
MK
65This function is obsolete.
66Don't use it.
67If the time in seconds
fea681da
MK
68suffices,
69.BR time (2)
70can be used;
71.BR gettimeofday (2)
72gives microseconds;
73.BR clock_gettime (3)
74gives nanoseconds but is not yet widely available.
75.LP
76Under libc4 and libc5 the \fImillitm\fP field is meaningful.
77But early glibc2 is buggy and returns 0 there;
78glibc 2.1.1 is correct again.
79.SH HISTORY
80The
63aa9df0 81.BR ftime ()
fea681da
MK
82function appeared in 4.2BSD.
83.SH "CONFORMING TO"
68e1685c 844.2BSD, POSIX.1-2001.
fea681da
MK
85.SH "SEE ALSO"
86.BR gettimeofday (2),
87.BR time (2)