tmp/tmpjytuuq4c/{from.md → to.md}
RENAMED
|
@@ -13,18 +13,18 @@ namespace std {
|
|
| 13 |
struct timespec;
|
| 14 |
struct tm;
|
| 15 |
|
| 16 |
clock_t clock();
|
| 17 |
double difftime(time_t time1, time_t time0);
|
| 18 |
-
time_t mktime(
|
| 19 |
time_t time(time_t* timer);
|
| 20 |
int timespec_get(timespec* ts, int base);
|
| 21 |
-
char* asctime(const
|
| 22 |
char* ctime(const time_t* timer);
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
size_t strftime(char* s, size_t maxsize, const char* format, const
|
| 26 |
}
|
| 27 |
```
|
| 28 |
|
| 29 |
The contents of the header `<ctime>` are the same as the C standard
|
| 30 |
library header `<time.h>`.[^1]
|
|
@@ -37,22 +37,25 @@ See also: ISO C 7.27
|
|
| 37 |
<!-- Link reference definitions -->
|
| 38 |
[basic.lookup.argdep]: basic.md#basic.lookup.argdep
|
| 39 |
[cpp17.equalitycomparable]: #cpp17.equalitycomparable
|
| 40 |
[cpp17.lessthancomparable]: #cpp17.lessthancomparable
|
| 41 |
[ctime.syn]: #ctime.syn
|
|
|
|
| 42 |
[filesystems]: input.md#filesystems
|
| 43 |
[format.formatter]: utilities.md#format.formatter
|
| 44 |
[format.string]: utilities.md#format.string
|
| 45 |
[formatter.requirements]: utilities.md#formatter.requirements
|
| 46 |
[intro.multithread]: basic.md#intro.multithread
|
| 47 |
-
[
|
|
|
|
| 48 |
[numeric.requirements]: numerics.md#numeric.requirements
|
| 49 |
[over.ics.rank]: over.md#over.ics.rank
|
| 50 |
[over.match.class.deduct]: over.md#over.match.class.deduct
|
| 51 |
[res.on.data.races]: library.md#res.on.data.races
|
| 52 |
[swappable.requirements]: library.md#swappable.requirements
|
| 53 |
[temp.deduct]: temp.md#temp.deduct
|
|
|
|
| 54 |
[time]: #time
|
| 55 |
[time.12]: #time.12
|
| 56 |
[time.cal]: #time.cal
|
| 57 |
[time.cal.day]: #time.cal.day
|
| 58 |
[time.cal.day.members]: #time.cal.day.members
|
|
@@ -124,10 +127,11 @@ See also: ISO C 7.27
|
|
| 124 |
[time.clock.conv]: #time.clock.conv
|
| 125 |
[time.clock.file]: #time.clock.file
|
| 126 |
[time.clock.file.members]: #time.clock.file.members
|
| 127 |
[time.clock.file.nonmembers]: #time.clock.file.nonmembers
|
| 128 |
[time.clock.file.overview]: #time.clock.file.overview
|
|
|
|
| 129 |
[time.clock.gps]: #time.clock.gps
|
| 130 |
[time.clock.gps.members]: #time.clock.gps.members
|
| 131 |
[time.clock.gps.nonmembers]: #time.clock.gps.nonmembers
|
| 132 |
[time.clock.gps.overview]: #time.clock.gps.overview
|
| 133 |
[time.clock.hires]: #time.clock.hires
|
|
@@ -150,10 +154,11 @@ See also: ISO C 7.27
|
|
| 150 |
[time.duration.alg]: #time.duration.alg
|
| 151 |
[time.duration.arithmetic]: #time.duration.arithmetic
|
| 152 |
[time.duration.cast]: #time.duration.cast
|
| 153 |
[time.duration.comparisons]: #time.duration.comparisons
|
| 154 |
[time.duration.cons]: #time.duration.cons
|
|
|
|
| 155 |
[time.duration.io]: #time.duration.io
|
| 156 |
[time.duration.literals]: #time.duration.literals
|
| 157 |
[time.duration.nonmember]: #time.duration.nonmember
|
| 158 |
[time.duration.observer]: #time.duration.observer
|
| 159 |
[time.duration.special]: #time.duration.special
|
|
@@ -170,10 +175,11 @@ See also: ISO C 7.27
|
|
| 170 |
[time.point]: #time.point
|
| 171 |
[time.point.arithmetic]: #time.point.arithmetic
|
| 172 |
[time.point.cast]: #time.point.cast
|
| 173 |
[time.point.comparisons]: #time.point.comparisons
|
| 174 |
[time.point.cons]: #time.point.cons
|
|
|
|
| 175 |
[time.point.nonmember]: #time.point.nonmember
|
| 176 |
[time.point.observer]: #time.point.observer
|
| 177 |
[time.point.special]: #time.point.special
|
| 178 |
[time.summary]: #time.summary
|
| 179 |
[time.syn]: #time.syn
|
|
|
|
| 13 |
struct timespec;
|
| 14 |
struct tm;
|
| 15 |
|
| 16 |
clock_t clock();
|
| 17 |
double difftime(time_t time1, time_t time0);
|
| 18 |
+
time_t mktime(tm* timeptr);
|
| 19 |
time_t time(time_t* timer);
|
| 20 |
int timespec_get(timespec* ts, int base);
|
| 21 |
+
char* asctime(const tm* timeptr);
|
| 22 |
char* ctime(const time_t* timer);
|
| 23 |
+
tm* gmtime(const time_t* timer);
|
| 24 |
+
tm* localtime(const time_t* timer);
|
| 25 |
+
size_t strftime(char* s, size_t maxsize, const char* format, const tm* timeptr);
|
| 26 |
}
|
| 27 |
```
|
| 28 |
|
| 29 |
The contents of the header `<ctime>` are the same as the C standard
|
| 30 |
library header `<time.h>`.[^1]
|
|
|
|
| 37 |
<!-- Link reference definitions -->
|
| 38 |
[basic.lookup.argdep]: basic.md#basic.lookup.argdep
|
| 39 |
[cpp17.equalitycomparable]: #cpp17.equalitycomparable
|
| 40 |
[cpp17.lessthancomparable]: #cpp17.lessthancomparable
|
| 41 |
[ctime.syn]: #ctime.syn
|
| 42 |
+
[dcl.constexpr]: dcl.md#dcl.constexpr
|
| 43 |
[filesystems]: input.md#filesystems
|
| 44 |
[format.formatter]: utilities.md#format.formatter
|
| 45 |
[format.string]: utilities.md#format.string
|
| 46 |
[formatter.requirements]: utilities.md#formatter.requirements
|
| 47 |
[intro.multithread]: basic.md#intro.multithread
|
| 48 |
+
[lex.charset]: lex.md#lex.charset
|
| 49 |
+
[meta.rqmts]: meta.md#meta.rqmts
|
| 50 |
[numeric.requirements]: numerics.md#numeric.requirements
|
| 51 |
[over.ics.rank]: over.md#over.ics.rank
|
| 52 |
[over.match.class.deduct]: over.md#over.match.class.deduct
|
| 53 |
[res.on.data.races]: library.md#res.on.data.races
|
| 54 |
[swappable.requirements]: library.md#swappable.requirements
|
| 55 |
[temp.deduct]: temp.md#temp.deduct
|
| 56 |
+
[term.unevaluated.operand]: expr.md#term.unevaluated.operand
|
| 57 |
[time]: #time
|
| 58 |
[time.12]: #time.12
|
| 59 |
[time.cal]: #time.cal
|
| 60 |
[time.cal.day]: #time.cal.day
|
| 61 |
[time.cal.day.members]: #time.cal.day.members
|
|
|
|
| 127 |
[time.clock.conv]: #time.clock.conv
|
| 128 |
[time.clock.file]: #time.clock.file
|
| 129 |
[time.clock.file.members]: #time.clock.file.members
|
| 130 |
[time.clock.file.nonmembers]: #time.clock.file.nonmembers
|
| 131 |
[time.clock.file.overview]: #time.clock.file.overview
|
| 132 |
+
[time.clock.general]: #time.clock.general
|
| 133 |
[time.clock.gps]: #time.clock.gps
|
| 134 |
[time.clock.gps.members]: #time.clock.gps.members
|
| 135 |
[time.clock.gps.nonmembers]: #time.clock.gps.nonmembers
|
| 136 |
[time.clock.gps.overview]: #time.clock.gps.overview
|
| 137 |
[time.clock.hires]: #time.clock.hires
|
|
|
|
| 154 |
[time.duration.alg]: #time.duration.alg
|
| 155 |
[time.duration.arithmetic]: #time.duration.arithmetic
|
| 156 |
[time.duration.cast]: #time.duration.cast
|
| 157 |
[time.duration.comparisons]: #time.duration.comparisons
|
| 158 |
[time.duration.cons]: #time.duration.cons
|
| 159 |
+
[time.duration.general]: #time.duration.general
|
| 160 |
[time.duration.io]: #time.duration.io
|
| 161 |
[time.duration.literals]: #time.duration.literals
|
| 162 |
[time.duration.nonmember]: #time.duration.nonmember
|
| 163 |
[time.duration.observer]: #time.duration.observer
|
| 164 |
[time.duration.special]: #time.duration.special
|
|
|
|
| 175 |
[time.point]: #time.point
|
| 176 |
[time.point.arithmetic]: #time.point.arithmetic
|
| 177 |
[time.point.cast]: #time.point.cast
|
| 178 |
[time.point.comparisons]: #time.point.comparisons
|
| 179 |
[time.point.cons]: #time.point.cons
|
| 180 |
+
[time.point.general]: #time.point.general
|
| 181 |
[time.point.nonmember]: #time.point.nonmember
|
| 182 |
[time.point.observer]: #time.point.observer
|
| 183 |
[time.point.special]: #time.point.special
|
| 184 |
[time.summary]: #time.summary
|
| 185 |
[time.syn]: #time.syn
|