| 273 | } |
| 274 | |
| 275 | U64 UTIL_getFileSize(const char* infilename) |
| 276 | { |
| 277 | stat_t statbuf; |
| 278 | if (!UTIL_stat(infilename, &statbuf)) return UTIL_FILESIZE_UNKNOWN; |
| 279 | return UTIL_getFileSizeStat(&statbuf); |
| 280 | } |
| 281 | |
| 282 | U64 UTIL_getFileSizeStat(const stat_t* statbuf) |
| 283 | { |
no test coverage detected