inline.h

来自「xmlrpc,用 XML表示得远程过程调用,基于web上得远程计算」· C头文件 代码 · 共 20 行

H
20
字号
#ifndef XMLRPC_INLINE_H_INCLUDED
#define XMLRPC_INLINE_H_INCLUDED

/* Xmlrpc-c uses __inline__ to declare functions that should be
    compiled as inline code.  Some compilers, e.g. GNU, recognize the
    __inline__ keyword.
*/
#ifndef __GNUC__
#ifndef __inline__
#ifdef __sgi
#define __inline__ __inline
#else
#define __inline__
#endif
#endif
#endif


#endif

⌨️ 快捷键说明

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