怎么为这个小程序实现“按‘<-’(删除键) 删除前一字符”的功能?
怎么为下面小程序实现“按‘<-’(删除键) 删除前一字符”的功能?
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <termios.h>
int main()
{
int i=0;
int fd = -1;
unsigned char byte;
struct termios term, termsave;
if ((fd = open ("/dev/tty", O_RDWR | O_NOCTTY)) < 0)
return -1;
tcgetattr (fd, &term);
tcgetattr (fd, &termsave);
term.c_lflag &= ~(ICANON | ECHO | ISIG);
tcsetattr (fd, TCSANOW, &term);
for(i=0; i<30; i++)
{
read (fd, &byte, 1);
write (fd, &byte, 1);
}
tcsetattr (fd, TCSANOW, &termsave);
close(fd);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论