摘要:
这两章的内容相对较少,所以合到一起写。第六章1. 获取pwd结构体指针的三个函数:#include <pwd.h>struct passwd *getpwuid(uid_t uid);struct passwd *getpwnam(const char *name);struct passwd *getpwent(void);2. 其他数据文件Description Data file Header Structure functionspasswords /etc/passwd <pwd.h> passwd getpwnam, getpwuidgroups /etc/ 阅读全文