I want to transform
void func(
into
void _func(
I tried this:
#define void\ func( void _func(
but I get an error:
test.c(1): error C2008: '\': unexpected in macro definition
Is this even possible?
I want to transform
void func(
into
void _func(
I tried this:
#define void\ func( void _func(
but I get an error:
test.c(1): error C2008: '\': unexpected in macro definition
Is this even possible?