Basic macros. More...
Go to the source code of this file.
Macros | |
| #define | STRINGIFY(A) #A |
| Convert a token to a string at compile-time. | |
| #define | STRINGIFY_MACRO(A) STRINGIFY(A) |
| Convert a macro's value to a string at compile-time. | |
Basic macros.
| #define STRINGIFY | ( | A | ) | #A |
Convert a token to a string at compile-time.
| A | The token to stringify. |
| #define STRINGIFY_MACRO | ( | A | ) | STRINGIFY(A) |
Convert a macro's value to a string at compile-time.
| A | The name of the macro to process. |