Difference between revisions of "cpp/chrono/c/time t"
From cppreference.com
(Created page with "{{cpp/title| time_t}} {{cpp/chrono/c/sidebar}} Arithmetic type capable of representing times. Although not defined, this is almost always a integral value holding the number of...") |
(use enwiki) |
||
Line 1: | Line 1: | ||
− | {{cpp/title| time_t}} | + | {{cpp/title|time_t}} |
{{cpp/chrono/c/sidebar}} | {{cpp/chrono/c/sidebar}} | ||
− | + | {{ddcl | header=ctime | 1= | |
+ | typedef /* unspecified */ time_t; | ||
+ | }} | ||
Arithmetic type capable of representing times. | Arithmetic type capable of representing times. | ||
− | Although not defined, this is almost always a integral value holding the number of seconds since 00:00, Jan 1 1970 UTC, corresponding to [ | + | Although not defined, this is almost always a integral value holding the number of seconds since 00:00, Jan 1 1970 UTC, corresponding to [[enwiki:Unix_time | POSIX time]]. |
===See also=== | ===See also=== |
Revision as of 06:27, 9 December 2011
Defined in header <ctime>
|
||
typedef /* unspecified */ time_t; |
||
Arithmetic type capable of representing times.
Although not defined, this is almost always a integral value holding the number of seconds since 00:00, Jan 1 1970 UTC, corresponding to POSIX time.