尋找Unix Unistd.h 的Windows 替代品
使用Visual C 為Windows 環境開發控制台程式可能需要使用「unistd.h 「頭檔中定義的函數,該頭檔不是Windows 原生的。遇到這種情況的人通常會尋求替代品。
建立自訂“unistd.h”
一種方法是建立一個自訂“unistd.h”,其中包括必要的功能。然而,可能存在更廣泛的解決方案來緩解此問題。
將 Unistd.h 移植到 Windows
為了滿足這一需求,提出了一項社區驅動的計劃將「unistd.h」移植到 Windows。這裡是一個建議的起點,鼓勵貢獻:
#ifndef _UNISTD_H #define _UNISTD_H 1 /* This is intended as a drop-in replacement for unistd.h on Windows. * Please add functionality as needed. */ #include <stdlib.h> #include <io.h> #include <getopt.h> /* Found at https://gist.github.com/ashelly/7776712 */ #include <process.h> /* for getpid() and the exec..() family */ #include <direct.h> /* for _getcwd() and _chdir() */ #define srandom srand #define random rand /* Values for the second argument to access. These may be OR'd together. */ #define R_OK 4 /* Test for read permission. */ #define W_OK 2 /* Test for write permission. */ //#define X_OK 1 /* execute permission - unsupported in windows*/ #define F_OK 0 /* Test for existence. */ #define access _access #define dup2 _dup2 #define execve _execve #define ftruncate _chsize #define unlink _unlink #define fileno _fileno #define getcwd _getcwd #define chdir _chdir #define isatty _isatty #define lseek _lseek #ifdef _WIN64 #define ssize_t __int64 #else #define ssize_t long #endif #define STDIN_FILENO 0 #define STDOUT_FILENO 1 #define STDERR_FILENO 2 /* should be in some equivalent to <sys/types.h> */ typedef __int8 int8_t; typedef __int16 int16_t; typedef __int32 int32_t; typedef __int64 int64_t; typedef unsigned __int8 uint8_t; typedef unsigned __int16 uint16_t; typedef unsigned __int32 uint32_t; typedef unsigned __int64 uint64_t; #endif /* unistd.h */
這為社區合作為Windows 移植“unistd.h”提供了一個起點,節省了開發工作並確保更無縫的移植體驗從Unix到Windows。
以上是如何在Windows環境下替換Unix的unistd.h?的詳細內容。更多資訊請關注PHP中文網其他相關文章!