home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / include / pwd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  184 b   |  12 lines

  1. struct    passwd { /* see getpwent(3) */
  2.     char    *pw_name;
  3.     char    *pw_passwd;
  4.     int    pw_uid;
  5.     int    pw_gid;
  6.     int    pw_quota;
  7.     char    *pw_comment;
  8.     char    *pw_gecos;
  9.     char    *pw_dir;
  10.     char    *pw_shell;
  11. };
  12.