auto_nlist.h

来自「snmp的源代码,已经在我的ubuntu下编译通过」· C头文件 代码 · 共 29 行

H
29
字号
/* * auto_nlist.h */#ifndef AUTO_NLIST_H#define AUTO_NLIST_H#ifdef __cplusplusextern          "C" {#endif#if defined(irix6) && defined(IRIX64)#define nlist nlist64#endif#ifdef CAN_USE_NLISTint             auto_nlist(const char *, char *, int);long            auto_nlist_value(const char *);int             KNLookup(struct nlist *, int, char *, int);#elseint             auto_nlist_noop(void);#	define auto_nlist(x,y,z) auto_nlist_noop()#	define auto_nlist_value(z) auto_nlist_noop()#	define KNLookup(w,x,y,z) auto_nlist_noop()#endif#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

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