| 1514 | } |
| 1515 | |
| 1516 | struct tm *localtime_r(const time_t *timep, struct tm *result) |
| 1517 | { |
| 1518 | if (localtime_s(result, timep) == 0) |
| 1519 | return result; |
| 1520 | return NULL; |
| 1521 | } |
| 1522 | #endif |
| 1523 | |
| 1524 | char *mingw_getcwd(char *pointer, int len) |
no outgoing calls
no test coverage detected