setpwent()

来源:互联网 发布:洗相片软件 编辑:程序博客网 时间:2024/06/05 07:47

setpwent()用来将getpwent()的读写地址指回密码文件开头。
外文名
setpwent()
头文件
#include<pwd.h>
原    型
void setpwent(void);
说    明
指回密码文件开头

目录

  1. 1头文件
  2. 2函数原型
  3. 3范例

头文件

编辑
#include<pwd.h>
#include<sys/types.h>

函数原型

编辑
void setpwent(void);

范例

编辑
#include<pwd.h>
#include<sys/types.h>
main()
{
struct passwd *user;
int i;
for(i=0;i<4;i++){
user=getpwent();
printf(“%s :%d :%d :%s:%s:%s\n”,user->pw_name,user->pw_uid,user->pw_gid,user->pw_gecos,user->pw_dir,user->pw_shell);
}
setpwent();
user=getpwent();
printf(“%s :%d :%d :%s:%s:%s\n”,user->pw_name,user->pw_uid,user->pw_gid,
user->pw_gecos,user->pw_dir,user->pw_shell);
endpwent();
}
执行 root:0:0:root:/root:/bin/bash
bin:1:1:bin:/bin
daemon:2:2:daemon:/sbin
adm:3:4:adm:/var/adm
root:0:0:root:/root:/bin/bash
0 0
原创粉丝点击