| 199 | } |
| 200 | |
| 201 | int UTIL_isDirectory(const char* infilename) |
| 202 | { |
| 203 | stat_t statbuf; |
| 204 | return UTIL_stat(infilename, &statbuf) && UTIL_isDirectoryStat(&statbuf); |
| 205 | } |
| 206 | |
| 207 | int UTIL_isDirectoryStat(const stat_t* statbuf) |
| 208 | { |
no test coverage detected