| 230 | } |
| 231 | |
| 232 | static long long timespec_to_ms(struct timespec ts) { |
| 233 | return (long long)ts.tv_sec * 1000LL + ts.tv_nsec / 1000000LL; |
| 234 | } |
| 235 | |
| 236 | long long getFileModifyTimeInMS(const char *path) { |
| 237 | if (!path) { |
no outgoing calls
no test coverage detected