1: /*	pwd.h	4.1	83/05/03	*/
   2: 
   3: struct  passwd { /* see getpwent(3) */
   4:     char    *pw_name;
   5:     char    *pw_passwd;
   6:     int pw_uid;
   7:     int pw_gid;
   8:     int pw_quota;
   9:     char    *pw_comment;
  10:     char    *pw_gecos;
  11:     char    *pw_dir;
  12:     char    *pw_shell;
  13: };
  14: 
  15: struct passwd *getpwent(), *getpwuid(), *getpwnam();

Defined struct's

passwd defined in line 3; used 2 times
  • in line 15(2)
Last modified: 1983-12-03
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 765
Valid CSS Valid XHTML 1.0 Strict