| 838 | size_t len = 0; |
| 839 | #ifdef _MSC_VER |
| 840 | struct tm _tm; |
| 841 | errno_t err = localtime_s(&_tm, &statInfos.st_mtime); |
| 842 | if (!err) len = strftime(timebuf, 99, DateTimeFormat, &_tm); |
| 843 | #else // _MSC_VER |
nothing calls this directly
no outgoing calls
no test coverage detected