pwd.h

来自「CFront1.0的源代码,第一代C++编译器的思想...」· C头文件 代码 · 共 34 行

H
34
字号
/* @(#) pwd.h 1.4 1/27/86 17:46:54 *//*ident	"@(#)cfront:incl/pwd.h	1.4"*/#ifndef FILE#       include <stdio.h>#endifstruct passwd {	char	*pw_name;	char	*pw_passwd;	int	pw_uid;	int	pw_gid;	char	*pw_age;	char	*pw_comment;	char	*pw_gecos;	char	*pw_dir;	char	*pw_shell;};struct comment {	char	*c_dept;	char	*c_name;	char	*c_acct;	char	*c_bin;};extern passwd *getpwent ();extern passwd *getpwuid ();extern passwd *getpwnam (const char*);extern passwd *fgetpwent (FILE*);extern void setpwent ();extern void endpwent ();extern int putpwent (const passwd*, FILE*);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?