📄 test.c
字号:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <fcntl.h>
#include <shadow.h>
main()
{
struct spwd *spwdptr;
int i;
setspent();
spwdptr=getspnam("weng");
printf("\n\nname [%s]\npasswd [%s]\ndate of last change [%d]\nexpiry date[%d]\n",spwdptr->sp_namp,spwdptr->sp_pwdp,spwdptr->sp_lstchg,spwdptr->sp_expire);
endspent();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -