mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-18 14:18:41 +00:00
33 lines
511 B
C
Executable File
33 lines
511 B
C
Executable File
/**
|
|
* 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 <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef _WIN32
|
|
#include <direct.h>
|
|
#include <io.h>
|
|
|
|
typedef _chdir chdir;
|
|
typedef _getcwd getcwd;
|
|
|
|
#ifdef _MSC_VER
|
|
typedef _access_s access;
|
|
#else
|
|
#include <unistd.h>
|
|
#endif
|
|
#else
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#endif
|