Main Page
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Classes
Class List
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Typedefs
_
b
c
e
l
m
n
p
r
s
t
v
w
Enumerations
Enumerator
a
b
c
d
e
i
l
m
n
o
p
r
t
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
z
contrib
cygwin-check
tzname.c
Go to the documentation of this file.
1
#include <stdio.h>
2
#include <
time.h
>
3
4
extern
char
*
tzname
[2];
5
int
main
(
void
)
6
{
7
printf(
"without tzset()\n"
);
8
printf(
"tzname: [%s][%s]\n"
,
tzname
[0],
tzname
[1]);
9
10
tzset();
11
printf(
"with tzset()\n"
);
12
printf(
"tzname: [%s][%s]\n"
,
tzname
[0],
tzname
[1]);
13
14
return
0;
15
}
main
int main(void)
Definition:
tzname.c:5
time.h
tzname
char * tzname[2]
euslisp
Author(s): Toshihiro Matsui
autogenerated on Thu Jun 15 2023 02:06:43