C 中是否有用于读/写系统调用的标准输入/输出宏?
我所有的搜索都没有返回任何内容,而且我发现奇怪的是没有任何宏可用作标准输入和输出的读/写系统调用的文件描述符,而不是 0(stdout)和 1(stdin)。
是我想念它们还是它们真的不存在?
All my searches returned nothing and I find it odd that there aren't any macros to use as file descriptors for read/write system calls for standard input and output instead of a 0 (stdout) and a 1 (stdin).
Am I missing them or they really don't exist?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们存在于 POSIX 机器上的 unistd.h 中。 STDOUT_FILENO、STDIN_FILENO 和 STDERR_FILENO。 请参阅:http://www.opengroup.org/onlinepubs/009695399/ basedefs/unistd.h.html
They exist in unistd.h on a POSIX machine. STDOUT_FILENO, STDIN_FILENO, and STDERR_FILENO. See: http://www.opengroup.org/onlinepubs/009695399/basedefs/unistd.h.html