Scroll to navigation

putpwent(3) Library Functions Manual putpwent(3)

이름

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

라이브러리

표준 C 라이브러리 (libc, -lc)

요약

#include <stdio.h>
#include <sys/types.h>
#include <pwd.h>
int putpwent(const struct passwd *restrict p, FILE *restrict stream);

Feature Test Macro Requirements for glibc (see feature_test_macros(7)):

putpwent():


glibc 2.19부터:
_DEFAULT_SOURCE
glibc 2.19 이하:
_SVID_SOURCE

설명

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 프로그램 */ };

반환값

The putpwent() function returns 0 on success. On failure, it returns -1, and errno is set to indicate the error.

에러

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

속성

이 섹션에서 사용되는 용어에 대한 설명은 attributes(7)을 참조하십시오.

상호 작용 속성 번호
putpwent() Thread safety MT-Safe locale

표준

SVr4.

추가 참조

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

번역

이 매뉴얼 페이지의 한국어 번역은 다음에 의해 편집되었습니다: 정강훈 <skyeyes@soback.kornet.net>

이 번역은 무료 문서입니다. 저작권 조건에 대해서는 GNU General Public License 버전 3 이상을 읽으십시오. 책임이 없습니다.

이 매뉴얼 페이지의 번역에서 오류를 발견하면 translation-team-ko@googlegroups.com 로 이메일을 보내주십시오.

2023년 2월 5일 Linux man-pages 6.03