bugzilla-4intranet/extensions/testopia/ycomp.pl

11 lines
120 B
Perl
Executable File

#!/usr/bin/perl
$/ = undef;
while(<>)
{
s!/\*.*?\*/!!gso;
s!^\s+!!gmo;
s!^(//.*)?(\n|$)!!gmo;
print;
}