Manpages

이 름

putpwent − 패 스 워 드 파 일 엔 트 리 를 쓴 다 .

사 용 법

#include <pwd.h>
#include <stdio.h>
#include <sys/types.h>

int putpwent(const struct passwd *p, FILE *stream);

설 명

putpwent() 함 수 는 stream과 관 련 된 파 일 에 구 조 체 p 인 패 스 워 드 엔 트 리 를 쓴 다 .

passwd 구 조 체 는 다 음 처 럼 <pwd.h>에 정 의 되 어 있 다 :

struct passwd {

char *pw_name;

/* 유 저 이 름 */
char *pw_passwd;

/* 유 저 패 스 워 드 */
uid_t pw_uid;

/* 유 저 id */
gid_t pw_gid;

/* 그 룹 id */

char *pw_gecos; /* 실 제 이 름 */

char *pw_dir;

/* 홈 디 렉 토 리 */

char *pw_shell; /* shell 프 로 그 램 */
};

반 환 값

putpwent() 함 수 는 성 공 시 0을 리 턴 하 고 , 에 러 가 발 생 하 면 −1을 반 환 한 다 . occurs.

에 러

EINVAL

유 효 하 지 않 은 인 자 가 주 어 졌 다 .

호 환

SVID 3

관 련 항 목

fgetpwent(3), getpwent(3), setpwent(3), endpwent(3), getpwnam(3), getpwuid(3), getpw(3)

역 자

정 강 훈 <skyeyes [AT] soback.net>, 2001년 4월 30일