tmp/tmpin8nui8y/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## Deprecated time formatting <a id="depr.ctime">[[depr.ctime]]</a>
|
| 2 |
+
|
| 3 |
+
The header `<ctime>` has the following additions:
|
| 4 |
+
|
| 5 |
+
``` cpp
|
| 6 |
+
char* asctime(const tm* timeptr);
|
| 7 |
+
char* ctime(const time_t* timer);
|
| 8 |
+
```
|
| 9 |
+
|
| 10 |
+
The functions `asctime` and `ctime` are not required to avoid data races
|
| 11 |
+
[[res.on.data.races]].
|
| 12 |
+
|
| 13 |
+
See also: ISO C 7.29
|
| 14 |
+
|