| 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 | { |
no outgoing calls