MCPcopy Create free account
hub / github.com/crownengine/crown / chdir

Function chdir

3rdparty/bx/src/os.cpp:289–302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

287 }
288
289 int chdir(const char* _path)
290 {
291#if BX_PLATFORM_PS4 \
292 || BX_PLATFORM_XBOXONE \
293 || BX_PLATFORM_WINRT \
294 || BX_CRT_NONE
295 BX_UNUSED(_path);
296 return -1;
297#elif BX_CRT_MSVC
298 return ::_chdir(_path);
299#else
300 return ::chdir(_path);
301#endif // BX_COMPILER_
302 }
303
304 void* exec(const char* const* _argv)
305 {

Callers 1

setcwdFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected