MCPcopy Create free account
hub / github.com/cppla/ServerStatus / fs_getcwd

Function fs_getcwd

server/src/system.c:1439–1448  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1437}
1438
1439char *fs_getcwd(char *buffer, int buffer_size)
1440{
1441 if(buffer == 0)
1442 return 0;
1443#if defined(CONF_FAMILY_WINDOWS)
1444 return _getcwd(buffer, buffer_size);
1445#else
1446 return getcwd(buffer, buffer_size);
1447#endif
1448}
1449
1450int fs_parent_dir(char *path)
1451{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected