C語言setpwent()函式:從頭讀取密碼檔案中的賬號資料

2puT發表於2016-07-17
相關函式:getpwent, endpwent

標頭檔案:#include <pwd.h>   #include <sys/types.h>

定義函式:void setpwent(void);

函式說明:setpwent()用來將getpwent()的讀寫地址指回密碼檔案開頭。

範例
#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

相關文章