aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lemon/cppmagic.h
blob: 7efd066accda06473d600fbd065e87b8abdc72ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* $Id$ */

/**************************************** 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)