1 Star 0 Fork 0

godeyer / clang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nonecho.c 878 Bytes
一键复制 编辑 原始数据 按行查看 历史
godeyer 提交于 2024-01-19 14:10 . 初次提交
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <termios.h>
#define PASSWORE_LEN 8
int main(int argc, char **argv)
{
struct termios initseting, newseting;
char password[PASSWORE_LEN + 1];
FILE *fp = fopen("/dev/pts/3", "w+");
tcgetattr(fileno(fp), &initseting);
newseting = initseting;
//本地显示屏蔽了回显
newseting.c_lflag &= ~ECHO;
//设置比特位
// newseting.c_lflag |= ECHO;
printf("Enter password: ");
if (tcsetattr(fileno(fp), TCSAFLUSH, &newseting) != 0)
{
perror("error");
}
else
{
fgets(password,PASSWORE_LEN,stdin);
tcsetattr(fileno(fp), TCSANOW, &initseting);
fprintf(stdout,"\nYou enter %s",password);
};
exit(0);
// printf(" %d \n",fileno(fp));
return 0;
}
1
https://gitee.com/zzzman/clang.git
git@gitee.com:zzzman/clang.git
zzzman
clang
clang
master

搜索帮助