| 101 | } |
| 102 | |
| 103 | const char *behindpath(const char *s) |
| 104 | { |
| 105 | const char *t = s; |
| 106 | for( ; (s = strpbrk(s, "/\\")); t = ++s); |
| 107 | return t; |
| 108 | } |
| 109 | |
| 110 | bool fileexists(const char *path, const char *mode) |
| 111 | { |
no outgoing calls
no test coverage detected