| 250 | } |
| 251 | |
| 252 | static RString PathFirstFolder(const char* path) |
| 253 | { |
| 254 | const char* next = strchr(path, '/'); |
| 255 | if (!next) |
| 256 | { |
| 257 | return ""; |
| 258 | } |
| 259 | return RString(path, next - path); |
| 260 | } |
| 261 | |
| 262 | } // namespace Poseidon |
| 263 |
no test coverage detected