I was wondering if it is possible to concatenate adjacent string literals in Lite-c at compile time. It would be nice for indentations and preprocessor macro definitions.
I could use the #include trick like in Quake2, but that doesn't look that nice too :S

for example this works in ANSI-c but not in lite-c:
printf("%s", SOMEMACRO "Hello "
"world\n" ANOTHERMACRO);

regards Alain