common/macros: added stringifying macro.
authorKrisztian Litkey <krisztian.litkey@intel.com>
Wed, 20 Jun 2012 15:28:33 +0000 (18:28 +0300)
committerKrisztian Litkey <krisztian.litkey@intel.com>
Wed, 20 Jun 2012 15:28:33 +0000 (18:28 +0300)
src/common/macros.h

index daf7370..69cd22f 100644 (file)
 /** Extract micro version from a version integer. */
 #define MRP_VERSION_MICRO(ver) ((ver) & 0xff)
 
+/** Macro to stringify a macro argument. */
+#define MRP_STRINGIFY(arg) #arg
+
 /** C++-compatibility macros. */
 #ifdef __cplusplus
 #    define MRP_CDECL_BEGIN extern "C" {