Is the given path "."?
| 134 | |
| 135 | // Is the given path "."? |
| 136 | static inline bool |
| 137 | isdot(const char *path) |
| 138 | { |
| 139 | return path[0] == '.' && path[1] == '\0'; |
| 140 | } |
| 141 | |
| 142 | // Is the given path ".."? |
| 143 | static inline bool |
no outgoing calls
no test coverage detected