3 if ($ARGV[0] =~ /^-/) {
6 # $TXT = ($lang eq '-txt');
15 ## Warn about windows-style newlines.
21 print " TAB:$fn:$.\n";
23 ## Warn about trailing whitespace.
25 print "Space\@EOL:$fn:$.\n";
27 ## Warn about control keywords without following space.
28 if ($C && /\s(?:if|while|for|switch)\(/) {
29 print " KW(:$fn:$.\n";
31 ## Warn about #else #if instead of #elif.
32 if (($lastline =~ /^\# *else/) and ($_ =~ /^\# *if/)) {
33 print " #else#if:$fn:$.\n";
36 ## Warn about unnecessary empty lines.
37 if ($lastnil && /^\s*}\n/) {
38 print " UnnecNL:$fn:$.\n";
40 ## Warn about multiple empty lines.
41 if ($lastnil && /^$/) {
42 print " DoubleNL:$fn:$.\n";
48 ## Terminals are still 80 columns wide in my world. I refuse to
49 ## accept double-line lines.
51 print " Wide:$fn:$.\n";
53 ### Juju to skip over comments and strings, since the tests
54 ### we're about to do are okay there.
71 s!"(?:[^\"]+|\\.)*"!"X"!g;
73 ## Warn about C++-style comments.
75 # print " //:$fn:$.\n";
78 ## Warn about unquoted braces preceded by non-space.
80 print " $1\{:$fn:$.\n";
82 ## Warn about multiple internal spaces.
83 #if (/[^\s,:]\s{2,}[^\s\\=]/) {
84 # print " X X:$fn:$.\n";
86 ## Warn about { with stuff after.
89 # print " {X:$fn:$.\n";
91 ## Warn about function calls with space before parens.
92 if (/(\w+)\s\(([A-Z]*)/) {
93 if ($1 ne "if" and $1 ne "while" and $1 ne "for" and
94 $1 ne "switch" and $1 ne "return" and $1 ne "int" and
95 $1 ne "elsif" and $1 ne "WINAPI" and $2 ne "WINAPI" and
96 $1 ne "void" and $1 ne "__attribute__") {
97 print " fn ():$fn:$.\n";
100 ## Warn about functions not declared at start of line.
102 ($fn !~ /\.h$/ && /^[a-zA-Z0-9_]/ &&
103 ! /^(?:const |static )*(?:typedef|struct|union)[^\(]*$/ &&
104 ! /= *\{$/ && ! /;$/)) {
106 print "fn() {:$fn:$.\n";
108 } elsif (/^\S[^\(]* +\**[a-zA-Z0-9_]+\(/) {
109 $in_func_head = -1; # started with tp fn
113 if ($in_func_head == -1) {
114 print "tp fn():$fn:$.\n";
122 print " EOL\@EOF:$fn:$.\n";