checkplatform.sh (191B)
1 #!/bin/sh 2 for n in `find * -name "*.c"` 3 do 4 PF=`grep "#include" $n | head -n1 | grep platform.h | wc -l` 5 if test $PF = 0 6 then 7 echo "$n does not include platform.h first!"; 8 fi 9 done
libextractorGNU libextractor | |
| Log | Files | Refs | Submodules | README | LICENSE |