in reply to Re: Modify C comment removal code to kill newlines
in thread Modify C comment removal code to kill newlines
And you're right about "The end!/*" - I'll fix that now.void function foo(void) /*My function is the best*/ { int i; /*i is an integer*/ int j; /*j is also an integer*/ i = 1; j = 1; i++; j++; }
|
---|