PUTPWENT

Section: Manual del Programador de Linux (3)
Updated: 5 Marzo 1998
Index Return to Main Contents


 

NOMBRE

putpwent - escribe una entrada en un fichero de usuarios  

SINOPSIS

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

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

DESCRIPCIÓN

La función putpwent() escribe una entrada de usuario de la estructura p en el fichero asociado con flujo.

La estructura passwd se define en <pwd.h> así:

struct passwd {
        char    *pw_name;       /* nombre de usuario */
        char    *pw_passwd;     /* contraseña cifrada */
        uid_t   pw_uid;         /* UID */
        gid_t   pw_gid;         /* GID */
        char    *pw_gecos;      /* nombre real */
        char    *pw_dir;        /* directorio de casa */
        char    *pw_shell;      /* programa shell */
};

 

VALOR DEVUELTO

La función putpwent() devuelve 0 en caso de éxito, ó -1 si ocurre un error.  

ERRORES

EINVAL
Argumento inválido (NULL).
 

CONFORME A

SVID 3  

VÉASE TAMBIÉN

fgetpwent

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


 

Index

NOMBRE
SINOPSIS
DESCRIPCIÓN
VALOR DEVUELTO
ERRORES
CONFORME A
VÉASE TAMBIÉN

This document was created by man2html, using the manual pages.
Time: 06:16:25 GMT, January 22, 2005