time.h revision 98312
1101206Srwatson/*
2126217Srwatson * Copyright (c) 1989, 1993
3101206Srwatson *	The Regents of the University of California.  All rights reserved.
4101206Srwatson * (c) UNIX System Laboratories, Inc.
5106573Srwatson * All or some portions of this file are derived from material licensed
6106573Srwatson * to the University of California by American Telephone and Telegraph
7106573Srwatson * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8106573Srwatson * the permission of UNIX System Laboratories, Inc.
9101206Srwatson *
10101206Srwatson * Redistribution and use in source and binary forms, with or without
11101206Srwatson * modification, are permitted provided that the following conditions
12101206Srwatson * are met:
13101206Srwatson * 1. Redistributions of source code must retain the above copyright
14101206Srwatson *    notice, this list of conditions and the following disclaimer.
15101206Srwatson * 2. Redistributions in binary form must reproduce the above copyright
16101206Srwatson *    notice, this list of conditions and the following disclaimer in the
17101206Srwatson *    documentation and/or other materials provided with the distribution.
18101206Srwatson * 3. All advertising materials mentioning features or use of this software
19101206Srwatson *    must display the following acknowledgement:
20101206Srwatson *	This product includes software developed by the University of
21101206Srwatson *	California, Berkeley and its contributors.
22101206Srwatson * 4. Neither the name of the University nor the names of its contributors
23101206Srwatson *    may be used to endorse or promote products derived from this software
24101206Srwatson *    without specific prior written permission.
25101206Srwatson *
26101206Srwatson * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27101206Srwatson * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28101206Srwatson * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29101206Srwatson * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30101206Srwatson * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31101206Srwatson * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32101206Srwatson * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33101206Srwatson * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34101206Srwatson * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35101206Srwatson * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36101206Srwatson * SUCH DAMAGE.
37101206Srwatson *
38101206Srwatson *	@(#)time.h	8.3 (Berkeley) 1/21/94
39101206Srwatson */
40101206Srwatson
41101206Srwatson/*
42101206Srwatson * $FreeBSD: head/include/time.h 98312 2002-06-17 01:31:25Z wollman $
43101206Srwatson */
44101206Srwatson
45101206Srwatson#ifndef _TIME_H_
46104038Srwatson#define	_TIME_H_
47101206Srwatson
48101206Srwatson#include <sys/cdefs.h>
49101206Srwatson#include <machine/ansi.h>
50101206Srwatson
51101206Srwatson#if __POSIX_VISIBLE > 0 && __POSIX_VISIBLE < 200112 || __BSD_VISIBLE
52101206Srwatson/*
53101206Srwatson * Frequency of the clock ticks reported by times().  Deprecated - use
54126217Srwatson * sysconf(_SC_CLK_TCK) instead.  (Removed in 1003.1-2001.)
55126217Srwatson */
56101206Srwatson#define	CLK_TCK		_BSD_CLK_TCK_
57101206Srwatson#endif
58101206Srwatson
59/* Frequency of the clock ticks reported by clock().  */
60#define	CLOCKS_PER_SEC	_BSD_CLOCKS_PER_SEC_
61
62#ifndef	NULL
63#define	NULL	0
64#endif
65
66#ifdef	_BSD_CLOCK_T_
67typedef	_BSD_CLOCK_T_	clock_t;
68#undef	_BSD_CLOCK_T_
69#endif
70
71#ifdef	_BSD_TIME_T_
72typedef	_BSD_TIME_T_	time_t;
73#undef	_BSD_TIME_T_
74#endif
75
76#ifdef	_BSD_SIZE_T_
77typedef	_BSD_SIZE_T_	size_t;
78#undef	_BSD_SIZE_T_
79#endif
80
81#if __POSIX_VISIBLE >= 199309
82/*
83 * New in POSIX 1003.1b-1993.
84 */
85#ifdef	_BSD_CLOCKID_T_
86typedef	_BSD_CLOCKID_T_	clockid_t;
87#undef	_BSD_CLOCKID_T_
88#endif
89
90#ifdef	_BSD_TIMER_T_
91typedef	_BSD_TIMER_T_	timer_t;
92#undef	_BSD_TIMER_T_
93#endif
94
95#include <sys/timespec.h>
96#endif /* __POSIX_VISIBLE >= 199309 */
97
98struct tm {
99	int	tm_sec;		/* seconds after the minute [0-60] */
100	int	tm_min;		/* minutes after the hour [0-59] */
101	int	tm_hour;	/* hours since midnight [0-23] */
102	int	tm_mday;	/* day of the month [1-31] */
103	int	tm_mon;		/* months since January [0-11] */
104	int	tm_year;	/* years since 1900 */
105	int	tm_wday;	/* days since Sunday [0-6] */
106	int	tm_yday;	/* days since January 1 [0-365] */
107	int	tm_isdst;	/* Daylight Savings Time flag */
108	long	tm_gmtoff;	/* offset from UTC in seconds */
109	char	*tm_zone;	/* timezone abbreviation */
110};
111
112#if __POSIX_VISIBLE
113extern char *tzname[];
114#endif
115
116__BEGIN_DECLS
117char *asctime(const struct tm *);
118clock_t clock(void);
119char *ctime(const time_t *);
120double difftime(time_t, time_t);
121struct tm *gmtime(const time_t *);
122struct tm *localtime(const time_t *);
123time_t mktime(struct tm *);
124size_t strftime(char *, size_t, const char *, const struct tm *);
125time_t time(time_t *);
126
127#if __BSD_VISIBLE			/* XXX what are these? */
128time_t _time32_to_time(__int32_t t32);
129__int32_t _time_to_time32(time_t t);
130time_t _time64_to_time(__int64_t t64);
131__int64_t _time_to_time64(time_t t);
132long _time_to_long(time_t t);
133time_t _long_to_time(long tlong);
134int _time_to_int(time_t t);
135time_t _int_to_time(int tint);
136#endif /* not ANSI */
137
138#if __POSIX_VISIBLE
139void tzset(void);
140
141/* XXX - figure out which standard introduced these */
142char *asctime_r(const struct tm *, char *);
143char *ctime_r(const time_t *, char *);
144struct tm *gmtime_r(const time_t *, struct tm *);
145struct tm *localtime_r(const time_t *, struct tm *);
146#endif
147
148#if __XSI_VISIBLE
149char *strptime(const char *, const char *, struct tm *);
150#endif
151
152#if __BSD_VISIBLE
153char *timezone(int, int);
154void tzsetwall(void);
155time_t timelocal(struct tm * const);
156time_t timegm(struct tm * const);
157#endif /* __BSD_VISIBLE */
158
159#if __POSIX_VISIBLE >= 199309
160/* Introduced in POSIX 1003.1b-1993, not part of 1003.1-1990. */
161int clock_getres(clockid_t, struct timespec *);
162int clock_gettime(clockid_t, struct timespec *);
163int clock_settime(clockid_t, const struct timespec *);
164int nanosleep(const struct timespec *, struct timespec *);
165#endif /* __POSIX_VISIBLE >= 199309 */
166__END_DECLS
167
168#endif /* !_TIME_H_ */
169