cppmagic.h

来自「ethereal公司开发的aodv路由协议代码」· C头文件 代码 · 共 15 行

H
15
字号
/* $Id: cppmagic.h,v 1.1 2001/02/27 20:34:09 gram Exp $ *//**************************************** CPP definitions ***************//* CPP magic: Concatenate two strings or macros that resolve to strings. * Use CONCAT(), not _CONCAT() */#define _CONCAT(a,b)		a ## b#define CONCAT(a,b)		_CONCAT(a,b)/* CPP magic: Surround a string or a macro that resolves to a string with * double quotes. */#define _STRINGIFY(a)		# a#define STRINGIFY(a)		_STRINGIFY(a)

⌨️ 快捷键说明

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