/** * Karaka * * @package Utils * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 * @link https://jingga.app */ #ifndef UTILS_OS_WRAPPER_H #define UTILS_OS_WRAPPER_H #include #include #ifdef _WIN32 #include #include typedef _chdir chdir; typedef _getcwd getcwd; #ifdef _MSC_VER typedef _access_s access; #else #include #endif #else #include #endif #endif