- or download this
s#/\*[^*]*\*+([^/*][^*]*\*+)*/|("(\\.|[^"\\])*"|'(\\.|[^'\\])*'|.[^/"'
+\\]*)#defined $2 ? $2 : ""#gse;
- or download this
/* I have good commenting style */
i = 1;
...
j = i;
j++;
- or download this
i = 1;
...
j = i;
j++;
- or download this
i = 1;
i++;
j = i;
j++;
- or download this
s#/\*[^*]*\*+([^/*][^*]*\*+)*/\n|("(\\.|[^"\\])*"|'(\\.|[^'\\])*'|.[^/
+"'\\]*)#defined $2 ? $2 : ""#gse;
- or download this
void function foo(void)
{
/*Indented comment*/
i = 1;
}
- or download this
void function foo(void)
{
i = 1;
}
- or download this
/*This is a bogus function*/
void function foo(void) /*My function is the best*/
...
/*And more!*/
j++;
/*The end!*/}
- or download this
void function foo(void)
{
...
j++;
}