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

📄 ranlib.h

📁 操作系统源代码
💻 H
字号:
/* * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands. * See the copyright notice in the ACK home directory, in the file "Copyright". *//* $Header: ranlib.h,v 2.3 90/10/25 11:18:34 ceriel Exp $ */#ifndef __RANLIB_H_INCLUDED#define __RANLIB_H_INCLUDED#ifndef SYMDEF#	define SYMDEF	"__.SYMDEF"#endif /* SYMDEF *//* * Structure of the SYMDEF table of contents for an archive. * SYMDEF begins with a long giving the number of ranlib * structures that immediately follow, and then continues with a string * table consisting of a long giving the number of bytes of * strings that follow and then the strings themselves. */struct ranlib {	union {	  char	*ran__ptr;	/* symbol name (in core) */	  long	ran__off;	/* symbol name (in file) */	}	ran_u;#define ran_ptr ran_u.ran__ptr#define ran_off ran_u.ran__off	long	ran_pos;	/* library member is at this position */};#define SZ_RAN	8#define SF_RAN	"44"#endif /* __RANLIB_H_INCLUDED */

⌨️ 快捷键说明

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