| 205 | } |
| 206 | |
| 207 | int UTIL_isDirectoryStat(const stat_t* statbuf) |
| 208 | { |
| 209 | #if defined(_MSC_VER) |
| 210 | return (statbuf->st_mode & _S_IFDIR) != 0; |
| 211 | #else |
| 212 | return S_ISDIR(statbuf->st_mode) != 0; |
| 213 | #endif |
| 214 | } |
| 215 | |
| 216 | int UTIL_compareStr(const void *p1, const void *p2) { |
| 217 | return strcmp(* (char * const *) p1, * (char * const *) p2); |
no outgoing calls
no test coverage detected