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

📄 oldutmp.h

📁 sysvinit--linux系统下的init
💻 H
字号:
/* * oldutmp.h	Definition of the old libc5 utmp structure. * * Version:	@(#)oldutmp.h  1.00  29-Mar-1998  miquels@cistron.nl * */#ifndef OLD_UTMP_H#define OLD_UTMP_H#define OLD_LINESIZE		12#define OLD_NAMESIZE		8#define OLD_HOSTSIZE		16struct oldutmp {	short	ut_type;	int	ut_pid;	char	ut_line[OLD_LINESIZE];	char	ut_id[4];	long	ut_oldtime;	char	ut_user[OLD_NAMESIZE];	char	ut_host[OLD_HOSTSIZE];	long	ut_oldaddr;};#endif

⌨️ 快捷键说明

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