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 multiple empty lines.
37 if ($lastnil && /^$/) {
38 print " DoubleNL:$fn:$.\n";
44 ## Terminals are still 80 columns wide in my world. I refuse to
45 ## accept double-line lines. Except, of course, svn Id tags
46 ## can make us go long.
47 if (/^.{80}/ && !/\$Id: /) {
48 print " Wide:$fn:$.\n";
50 ### Juju to skip over comments and strings, since the tests
51 ### we're about to do are okay there.
68 s!"(?:[^\"]+|\\.)*"!"X"!g;
70 ## Warn about C++-style comments.
72 # print " //:$fn:$.\n";
75 ## Warn about unquoted braces preceded by non-space.
77 print " $1\{:$fn:$.\n";
79 ## Warn about multiple internal spaces.
80 #if (/[^\s,:]\s{2,}[^\s\\=]/) {
81 # print " X X:$fn:$.\n";
83 ## Warn about { with stuff after.
86 # print " {X:$fn:$.\n";
88 ## Warn about function calls with space before parens.
89 if (/(\w+)\s\(([A-Z]*)/) {
90 if ($1 ne "if" and $1 ne "while" and $1 ne "for" and
91 $1 ne "switch" and $1 ne "return" and $1 ne "int" and
92 $1 ne "elsif" and $1 ne "WINAPI" and $2 ne "WINAPI" and
93 $1 ne "void" and $1 ne "__attribute__") {
94 print " fn ():$fn:$.\n";
97 ## Warn about functions not declared at start of line.
99 ($fn !~ /\.h$/ && /^[a-zA-Z0-9_]/ &&
100 ! /^(?:const |static )*(?:typedef|struct|union)[^\(]*$/ &&
101 ! /= *\{$/ && ! /;$/)) {
103 print "fn() {:$fn:$.\n";
105 } elsif (/^\S[^\(]* +\**[a-zA-Z0-9_]+\(/) {
106 $in_func_head = -1; # started with tp fn
110 if ($in_func_head == -1) {
111 print "tp fn():$fn:$.\n";
119 print " EOL\@EOF:$fn:$.\n";