1
vote
Macro-producing macros in C?
The problem is that you cannot have #define in a macro - you can pass it though.
#define make_macro(f, d) d f(...) f##_fn(f##_info, __VA_ARGS__)
make_macro(name1, #define)
make_mac …
4
votes
Printing name and value of a define
As long as you are willing to put up with the fact that SOMESTRING=SOMESTRING indicates that SOMESTRING has not been defined (view it as the token has not been redefined!?!), then the following sho …
