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

📄 who1bot.c

📁 unix linux 编程实践源代码
💻 C
字号:
/* *  show info() *	displays contents of the utmp struct in human readable form *	*note* these sizes should not be hardwired */show_info( struct utmp *utbufp ){	printf("%-8.8s", utbufp->ut_name);	/* the logname	*/	printf(" ");				/* a space	*/	printf("%-8.8s", utbufp->ut_line);	/* the tty	*/	printf(" ");				/* a space	*/	printf("%10ld", utbufp->ut_time);	/* login time	*/	printf(" ");				/* a space	*/#ifdef	SHOWHOST	printf("(%s)", utbufp->ut_host);	/* the host	*/#endif	printf("\n");				/* newline	*/}

⌨️ 快捷键说明

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