Windows ユーザー向けに「unistd.h」の失われた要素を回復する
クロスプラットフォーム コーディングの世界では、プラットフォーム固有の問題が発生します障害は避けられない。 Unix から Windows にコードを移植するプログラマーが直面する一般的な課題の 1 つは、Visual C に「unistd.h」が存在しないことです。この問題の解決策は、個々の関数を置き換えるか、より包括的な解決策を模索するかのいずれかです。
包括的なアプローチを求める人のために、以下の機能をカバーする Windows 互換の 'unistd.h' を作成するコミュニティの取り組みが進行中です。 Unix 版の重要な機能。次のコード スニペットは開始点を提供しており、ユーザーは必要に応じて貢献することが推奨されます。
#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. * https://stackoverflow.com/a/826027/1202830 */ #include <stdlib.h> #include <io.h> #include <getopt.h> /* getopt 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 /* read, write, and close are NOT being #defined here, because while there are file handle specific versions for Windows, they probably don't work for sockets. You need to look at your app and consider whether to call e.g. closesocket(). */ #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 */
ただし、より的を絞ったソリューションを求める人は、不足している機能に個別に取り組むことができます。たとえば、ランダム関数は「srand」と「rand」に置き換えることができ、「strcmp」は「_stricmp」に置き換えることができます。「getopt」の場合は、外部ライブラリ「gist.github.com/ashelly/7776712」が実装を提供します。
カスタムの「unistd.h」を作成することは可能ですが、より広範囲の重労働を誰かがすでに行っているかどうかを調査する価値はあります。機能性のこと。このアプローチはコミュニティの取り組みを活用し、貴重な開発時間を節約します。
以上がクロスプラットフォーム C 開発のために Windows で欠落している「unistd.h」機能を回復するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。