Is it possible to write a macro that single-quotes its argument?
#define SOME_MACRO(x)
such that SOME_MACRO(foo) expands to 'foo'
Thanks,
Marius
#define SOME_MACRO(x)
such that SOME_MACRO(foo) expands to 'foo'
Thanks,
Marius
Comment