ranlib.h
来自「基于4个mips核的noc设计」· C头文件 代码 · 共 29 行
H
29 行
/* * ranlib.h */#if !defined(__RANLIB_H__)#define __RANLIB_H__#include <sys/types.h> /* to get off_t *//* * The __.SYMDEF member of an archive defining nsyms symbols contains: * word containing nsyms * sizeof(struct ranlib) * nsyms struct ranlib entries * word containing length of string table * string table (0-padded to even boundary) */#define SYMDEF "__.SYMDEF" /* member name */struct ranlib { off_t ran_strx; /* string table index of symbol */ off_t ran_off; /* offset of archive member */};#endif /* !defined(__RANLIB_H__) *//* end of ranlib.h */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?