| 227 | |
| 228 | |
| 229 | bool IsUnreadable(uint Attr) |
| 230 | { |
| 231 | #if defined(_UNIX) && defined(S_ISFIFO) && defined(S_ISSOCK) && defined(S_ISCHR) |
| 232 | return S_ISFIFO(Attr) || S_ISSOCK(Attr) || S_ISCHR(Attr); |
| 233 | #endif |
| 234 | return false; |
| 235 | } |
| 236 | |
| 237 | |
| 238 | bool IsLink(uint Attr) |
nothing calls this directly
no outgoing calls
no test coverage detected