Use Gnulib's `inet_ntop' and `inet_pton' modules.
[bpt/guile.git] / lib / time.in.h
CommitLineData
e65fc94b
LC
1/* A more-standard <time.h>.
2
25361e4b 3 Copyright (C) 2007-2009 Free Software Foundation, Inc.
e65fc94b
LC
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
18
aa7a939c 19#if __GNUC__ >= 3
e65fc94b 20@PRAGMA_SYSTEM_HEADER@
aa7a939c 21#endif
e65fc94b
LC
22
23/* Don't get in the way of glibc when it includes time.h merely to
24 declare a few standard symbols, rather than to declare all the
25 symbols. Also, Solaris 8 <time.h> eventually includes itself
26 recursively; if that is happening, just include the system <time.h>
27 without adding our own declarations. */
28#if (defined __need_time_t || defined __need_clock_t \
29 || defined __need_timespec \
30 || defined _GL_TIME_H)
31
32# @INCLUDE_NEXT@ @NEXT_TIME_H@
33
34#else
35
36# define _GL_TIME_H
37
38# @INCLUDE_NEXT@ @NEXT_TIME_H@
39
8912421c
LC
40/* NetBSD 5.0 mis-defines NULL. */
41#include <stddef.h>
42
e65fc94b
LC
43# ifdef __cplusplus
44extern "C" {
45# endif
46
47/* Some systems don't define struct timespec (e.g., AIX 4.1, Ultrix 4.3).
48 Or they define it with the wrong member names or define it in <sys/time.h>
49 (e.g., FreeBSD circa 1997). */
50# if ! @TIME_H_DEFINES_STRUCT_TIMESPEC@
51# if @SYS_TIME_H_DEFINES_STRUCT_TIMESPEC@
52# include <sys/time.h>
53# else
54# undef timespec
55# define timespec rpl_timespec
56struct timespec
57{
58 time_t tv_sec;
59 long int tv_nsec;
60};
61# endif
62# endif
63
64/* Sleep for at least RQTP seconds unless interrupted, If interrupted,
65 return -1 and store the remaining time into RMTP. See
66 <http://www.opengroup.org/susv3xsh/nanosleep.html>. */
67# if @REPLACE_NANOSLEEP@
68# define nanosleep rpl_nanosleep
69int nanosleep (struct timespec const *__rqtp, struct timespec *__rmtp);
70# endif
71
25361e4b
LC
72/* Return the 'time_t' representation of TP and normalize TP. */
73# if @REPLACE_MKTIME@
74# define mktime rpl_mktime
75extern time_t mktime (struct tm *__tp);
76# endif
77
e65fc94b
LC
78/* Convert TIMER to RESULT, assuming local time and UTC respectively. See
79 <http://www.opengroup.org/susv3xsh/localtime_r.html> and
80 <http://www.opengroup.org/susv3xsh/gmtime_r.html>. */
81# if @REPLACE_LOCALTIME_R@
82# undef localtime_r
83# define localtime_r rpl_localtime_r
84# undef gmtime_r
85# define gmtime_r rpl_gmtime_r
86struct tm *localtime_r (time_t const *restrict __timer,
87 struct tm *restrict __result);
88struct tm *gmtime_r (time_t const *restrict __timer,
89 struct tm *restrict __result);
90# endif
91
92/* Parse BUF as a time stamp, assuming FORMAT specifies its layout, and store
93 the resulting broken-down time into TM. See
94 <http://www.opengroup.org/susv3xsh/strptime.html>. */
95# if @REPLACE_STRPTIME@
96# undef strptime
97# define strptime rpl_strptime
98char *strptime (char const *restrict __buf, char const *restrict __format,
99 struct tm *restrict __tm);
100# endif
101
102/* Convert TM to a time_t value, assuming UTC. */
103# if @REPLACE_TIMEGM@
104# undef timegm
105# define timegm rpl_timegm
106time_t timegm (struct tm *__tm);
107# endif
108
109/* Encourage applications to avoid unsafe functions that can overrun
110 buffers when given outlandish struct tm values. Portable
111 applications should use strftime (or even sprintf) instead. */
112# if GNULIB_PORTCHECK
113# undef asctime
114# define asctime eschew_asctime
115# undef asctime_r
116# define asctime_r eschew_asctime_r
117# undef ctime
118# define ctime eschew_ctime
119# undef ctime_r
120# define ctime_r eschew_ctime_r
121# endif
122
123# ifdef __cplusplus
124}
125# endif
126
127#endif