Detect static prototypes.
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 27 Feb 2009 21:11:49 +0000 (21:11 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 27 Feb 2009 21:11:49 +0000 (21:11 +0000)
Originally committed as revision 17649 to svn://svn.ffmpeg.org/ffmpeg/trunk

tools/patcheck

index 65beca9db93e46454604a3157b6b71e0f0287aab..89c06672f8f58778a0e7b78403ef41c95a104bdc 100755 (executable)
@@ -68,6 +68,7 @@ hiegrep '& *[a-zA-Z0-9_]* *\[ *0 *\]' 'useless & [0]' $*
 hiegrep '(\( *[0-9] *(&&|\|\|)|(&&|\|\|) *[0-9] *\))' 'overriding condition' $*
 hiegrep '(:\+|,|;)( *|static|\*)*'"$ERE_PRITYP"' *\*( |\*)*(src|source|input|in[^a-z])' 'missing const?' $*
 hiegrep '(:\+|,|;)( *|static|\*)*'"$ERE_PRITYP"' *(src|source|input|in)([0-9A-Z_][0-9A-Za-z_]*){1,} *\[' 'missing const (test2)?' $*
+hiegrep ' *static *'"$ERE_FUNCS"'[^)]*\);' 'static prototype, maybe you should reorder your functions' $*
 
 hiegrep2 '\.long_name *=' 'NULL_IF_CONFIG_SMAL' 'missing NULL_IF_CONFIG_SMAL' $*