口令文件 getpwent()

#include <sys/types.h>

#include <pwd.h>

struct passwd *getpwuid(uid_t uid);

struct passwd *getpwnam(const char *name);

#include <sys/types.h>
#include <pwd.h>
#include <stddef.h>
#include <string.h>
struct passwd * getpwnam(const char *name)
{
  struct passwd * ptr=NULL;
  //调用setpwent是保护性的措施,以便在调用者在此之前已经调用过getpwent
 // 的情况下,反绕有关文件使它们定位到文件开始处。
  setpwent();
  while ((ptr = getpwent()) != NULL)
    {
       if( strcmp(name,ptr->pw_name) == 0)
         {
           break;
         }
    }
  endpwent();//关闭
  return ptr;
}


 

你可能感兴趣的:(struct,null,include)