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

Function getcwd

src/core/os.cpp:228–236  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

226 }
227
228 const char *getcwd(char *buf, u32 size)
229 {
230#if CROWN_PLATFORM_WINDOWS
231 GetCurrentDirectory(size, buf);
232 return buf;
233#else
234 return ::getcwd(buf, size);
235#endif
236 }
237
238 void setcwd(const char *cwd)
239 {

Callers 2

main_loopMethod · 0.50

Calls

no outgoing calls

Tested by 1