ANSI VT100 转义序列的标准 C 头文件
是否有一个标准 C 标头包含 vt100 的 ansi 转义序列?
Is there a standard C header containing ansi escape sequences for say vt100 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更多的是一个库而不是标头,但我认为您正在寻找 termcap 或其现代替代品< a href="http://en.wikipedia.org/wiki/Terminfo" rel="nofollow noreferrer">terminfo。
或者也许是更高级别的诅咒。或者在本例中,直接替换 ncurses。
More a library than a header, but I think you are looking for termcap or its modern replacement terminfo.
Or perhaps the higher-level curses. Or in this case, the drop-in replacement ncurses.
答案是否定的,这种硬件特定的东西并不在C标准中。
The answer is no, this kind of hardware-specific stuff is not in the C standard.