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

📄 nlist.c

📁 操作系统SunOS 4.1.3版本的源码
💻 C
字号:
#if !defined(lint) && defined(SCCSIDS)static	char sccsid[] = "@(#)nlist.c 1.1 92/07/30 SMI";#endif/* * Copyright (c) 1987 Sun Microsystems, Inc. */#include <sys/file.h>/* * nlist - retreive attributes from name list (string table version) *         [The actual work is done in ../common/_nlist.c] */nlist(name, list)	char *name;	struct nlist *list;{	register int fd;	register int e;	fd = open(name, O_RDONLY, 0);	e = _nlist(fd, list);	close(fd);	return (e);}

⌨️ 快捷键说明

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