who1bot.c
来自「unix编程实践教程代码。适合初学者」· C语言 代码 · 共 19 行
C
19 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?