| 257 | } |
| 258 | |
| 259 | void fixupPath(char* path) |
| 260 | { |
| 261 | const size_t len = strlen(path); |
| 262 | for (size_t i = 0; i < len; i++) |
| 263 | { |
| 264 | if (path[i] == '\\') |
| 265 | { |
| 266 | path[i] = '/'; |
| 267 | } |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | void convertToOSPath(const char* path, char* pathOS) |
| 272 | { |
no outgoing calls