MCPcopy Create free account
hub / github.com/JACoders/OpenJK / FS_ConvertPath

Function FS_ConvertPath

code/qcommon/files.cpp:2459–2466  ·  view source on GitHub ↗

=========== FS_ConvertPath =========== */

Source from the content-addressed store, hash-verified

2457===========
2458*/
2459void FS_ConvertPath( char *s ) {
2460 while (*s) {
2461 if ( *s == '\\' || *s == ':' ) {
2462 *s = '/';
2463 }
2464 s++;
2465 }
2466}
2467
2468/*
2469===========

Callers 2

FS_NewDir_fFunction · 0.70
FS_FilenameCompletionFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected