Lines Matching defs:spwd
58 * The spwd structure is used in the retreval of information from
61 struct spwd {
82 extern struct spwd *getspnam_r(const char *, struct spwd *, char *, int);
83 extern struct spwd *getspent_r(struct spwd *, char *, int);
84 extern struct spwd *fgetspent_r(FILE *, struct spwd *, char *, int);
88 extern struct spwd *getspent(void); /* MT-unsafe */
89 extern struct spwd *fgetspent(FILE *); /* MT-unsafe */
90 extern struct spwd *getspnam(const char *); /* MT-unsafe */
92 extern int putspent(const struct spwd *, FILE *);