From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/c/chrono%2Ftime_t.html | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 devdocs/c/chrono%2Ftime_t.html (limited to 'devdocs/c/chrono%2Ftime_t.html') diff --git a/devdocs/c/chrono%2Ftime_t.html b/devdocs/c/chrono%2Ftime_t.html deleted file mode 100644 index d6e589de..00000000 --- a/devdocs/c/chrono%2Ftime_t.html +++ /dev/null @@ -1,38 +0,0 @@ -

time_t

Defined in header <time.h>
typedef /* unspecified */ time_t;
-

Real arithmetic type capable of representing times.

-

Although not defined by the C standard, this is almost always an integral value holding the number of seconds (not counting leap seconds) since 00:00, Jan 1 1970 UTC, corresponding to POSIX time.

-

Notes

The standard uses the term calendar time when referring to a value of type time_t.

-

Example

-

Show the start of the epoch.

-
#include <stdio.h>
-#include <time.h>
-#include <stdint.h>
- 
-int main(void)
-{
-    time_t epoch = 0;
-    printf("%jd seconds since the epoch began\n", (intmax_t)epoch);
-    printf("%s", asctime(gmtime(&epoch)));
-}

Possible output:

-
0 seconds since the epoch began
-Thu Jan  1 00:00:00 1970

References

See also

- - - -
returns the current calendar time of the system as time since epoch
(function)
-
(C23)(C11)
converts time since epoch to calendar time expressed as local time
(function)
-
(C23)(C11)
converts time since epoch to calendar time expressed as Coordinated Universal Time (UTC)
(function)
C++ documentation for time_t
-

- © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
- https://en.cppreference.com/w/c/chrono/time_t -

-
-- cgit v1.2.3