Update README on using libraries in non-standard locations
[bpt/guile.git] / libguile / stime.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
0527e687
DH
3#ifndef SCM_STIME_H
4#define SCM_STIME_H
5
102dbb6f 6/* Copyright (C) 1995,1996,1997,1998,2000, 2003, 2006, 2008 Free Software Foundation, Inc.
1c299a6b 7 *
73be1d9e
MV
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
1c299a6b 12 *
73be1d9e 13 * This library is distributed in the hope that it will be useful,
0f2d19dd 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
1c299a6b 17 *
73be1d9e
MV
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
92205699 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
73be1d9e 21 */
0527e687 22
0f2d19dd
JB
23\f
24
b4309c3c 25#include "libguile/__scm.h"
0f2d19dd 26
8a74f7f5
KR
27#include <unistd.h> /* for sysconf */
28
0f2d19dd 29\f
756414cf 30
8a74f7f5
KR
31/* This should be figured out by autoconf.
32
33 sysconf(_SC_CLK_TCK) is best, since it's the actual running kernel, not
34 some compile-time CLK_TCK. On glibc 2.3.2 CLK_TCK (when defined) is in
35 fact sysconf(_SC_CLK_TCK) anyway.
36
37 CLK_TCK is obsolete in POSIX. In glibc 2.3.2 it's defined by default,
38 but if you define _GNU_SOURCE or _POSIX_C_SOURCE to get other features
39 then it goes away. */
40
41#if ! defined(SCM_TIME_UNITS_PER_SECOND) && defined(_SC_CLK_TCK)
42# define SCM_TIME_UNITS_PER_SECOND ((int) sysconf (_SC_CLK_TCK))
43#endif
756414cf
MD
44#if ! defined(SCM_TIME_UNITS_PER_SECOND) && defined(CLK_TCK)
45# define SCM_TIME_UNITS_PER_SECOND ((int) CLK_TCK)
46#endif
47#if ! defined(SCM_TIME_UNITS_PER_SECOND) && defined(CLOCKS_PER_SEC)
48# define SCM_TIME_UNITS_PER_SECOND ((int) CLOCKS_PER_SEC)
49#endif
50#if ! defined(SCM_TIME_UNITS_PER_SECOND)
51# define SCM_TIME_UNITS_PER_SECOND 60
52#endif
53
54\f
33b001fd
MV
55SCM_API long scm_c_get_internal_run_time (void);
56SCM_API SCM scm_get_internal_real_time (void);
57SCM_API SCM scm_get_internal_run_time (void);
58SCM_API SCM scm_current_time (void);
59SCM_API SCM scm_gettimeofday (void);
60SCM_API SCM scm_localtime (SCM time, SCM zone);
61SCM_API SCM scm_gmtime (SCM time);
62SCM_API SCM scm_mktime (SCM sbd_time, SCM zone);
63SCM_API SCM scm_tzset (void);
64SCM_API SCM scm_times (void);
65SCM_API SCM scm_strftime (SCM format, SCM stime);
66SCM_API SCM scm_strptime (SCM format, SCM string);
102dbb6f 67SCM_INTERNAL void scm_init_stime (void);
0f2d19dd 68
0527e687 69#endif /* SCM_STIME_H */
89e00824
ML
70
71/*
72 Local Variables:
73 c-file-style: "gnu"
74 End:
75*/