Windows (Visual C) 是否有 unistd.h 的替代品?
在将 Unix 控制台程序移植到 Windows 时,开发人员经常会遇到以下问题:由于缺少“srandom”、“random”和“getopt”而遇到缺少原型的情况“unistd.h”。
尽管需要直接替换,但在互联网上进行了大量搜索却没有结果。为了解决这个问题,这里是 Windows 的“unistd.h”端口的起点,涵盖了常用的函数。
#ifndef _UNISTD_H #define _UNISTD_H 1 #include <stdlib.h> #include <io.h> #include <getopt.h> #include <process.h> #include <direct.h> #define srandom srand #define random rand #define R_OK 4 #define W_OK 2 #define F_OK 0 #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 #define STDIN_FILENO 0 #define STDOUT_FILENO 1 #define STDERR_FILENO 2 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 特定的文件处理函数同时保留原始 Unix 文件句柄(STDIN_FILENO、STDOUT_FILENO、STDERR_FILENO)。
可以添加进一步的增强功能根据需要进行端口,使其成为 Windows 环境中“unistd.h”的全面替代品。
以上是Unix unistd.h 头文件在 Windows 中的等效项是什么?的详细内容。更多信息请关注PHP中文网其他相关文章!