⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getpwnam.c

📁 该代码为unix环境高级编程的源代码
💻 C
字号:
#include <sys/types.h>#include <pwd.h>#include <stddef.h>#include <string.h>struct passwd *getpwnam(const char *name){    struct passwd  *ptr;    setpwent();    while ( (ptr = getpwent()) != NULL) {        if (strcmp(name, ptr->pw_name) == 0)            break;		/* found a match */    }    endpwent();    return(ptr);	/* ptr is NULL if no match found */}

⌨️ 快捷键说明

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