⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ttyname.c

📁 该代码为unix环境高级编程的源代码
💻 C
字号:
#include	<sys/types.h>#include	<sys/stat.h>#include	<dirent.h>#include	<limits.h>#include	<string.h>#include	<termios.h>#include	<unistd.h>#define	DEV		"/dev/"			/* device directory */#define	DEVLEN	sizeof(DEV)-1	/* sizeof includes null at end */char *ttyname(int fd){	struct stat		fdstat, devstat;	DIR				*dp;	struct dirent	*dirp;	static char		pathname[_POSIX_PATH_MAX + 1];	char			*rval;	if (isatty(fd) == 0)		return(NULL);	if (fstat(fd, &fdstat) < 0)		return(NULL);	if (S_ISCHR(fdstat.st_mode) == 0)		return(NULL);	strcpy(pathname, DEV);	if ( (dp = opendir(DEV)) == NULL)		return(NULL);	rval = NULL;	while ( (dirp = readdir(dp)) != NULL) {		if (dirp->d_ino != fdstat.st_ino)			continue;		/* fast test to skip most entries */		strncpy(pathname + DEVLEN, dirp->d_name, _POSIX_PATH_MAX - DEVLEN);		if (stat(pathname, &devstat) < 0)			continue;		if (devstat.st_ino == fdstat.st_ino &&			devstat.st_dev == fdstat.st_dev) {	/* found a match */				rval = pathname;				break;		}	}	closedir(dp);	return(rval);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -