| 133 | } |
| 134 | |
| 135 | int UTIL_isRegularFile(const char* infilename) |
| 136 | { |
| 137 | stat_t statbuf; |
| 138 | return UTIL_stat(infilename, &statbuf) && UTIL_isRegularFileStat(&statbuf); |
| 139 | } |
| 140 | |
| 141 | int UTIL_isRegularFileStat(const stat_t* statbuf) |
| 142 | { |
no test coverage detected