/** * Karaka * * @package Utils * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 * @link https://karaka.app */ #ifndef UTILS_PORTABILITY_H #define UTILS_PORTABILITY_H #ifdef __unix #define fopen_s(pFile, filename, mode) ((*(pFile)) = fopen((filename), (mode))) == NULL #endif #endif