tz

来自「Algorithms for Image Processing and Comp」· 代码 · 共 61 行

TXT
61
字号
@c ----------------------------------------------------------------------
@node tzname, time
@heading @code{tzname}
@subheading Syntax

@example
extern char *tzname[2]
@end example

@subheading Description

This array holds the names of standard and daylight savings timezones
for the local area.  You must call @code{tzset} to initialize these.

@c ----------------------------------------------------------------------
@node tzset, time
@heading @code{tzset}
@subheading Syntax

@example
#include <time.h>

void tzset(void);
@end example

@subheading Description

This function initializes the timezone information.

@subheading Return Value

None.

@c ----------------------------------------------------------------------
@node tzsetwall, time
@heading @code{tzsetwall}
@subheading Syntax

@example
#include <time.h>

void tzsetwall(void)
@end example

@subheading Description

This function initializes the system to "wall clock" time. 

@subheading Return Value

None.

@c ----------------------------------------------------------------------
@node _tztab, time
@heading @code{_tztab}

@subheading Description

This is an internal variable used by the @code{tz} functions. 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?