| 160 | void ddio_GetWorkingDir(char *path, int len) { GetCurrentDirectory(len, path); } |
| 161 | |
| 162 | bool ddio_SetWorkingDir(const char *path) { return (SetCurrentDirectory(path)) ? true : false; } |
| 163 | |
| 164 | bool ddio_FileDiff(const std::filesystem::path &path1, const std::filesystem::path &path2) { |
| 165 | struct _stat abuf, bbuf; |
no outgoing calls
no test coverage detected