ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
369 B

  1. # Filename: vvv.sh
  2. # Purpose: source code review, similar to "lint"
  3. # Author: Howard Wulf, AF5NE
  4. # Date: 2015-01-29
  5. # Uasage: implementation defined
  6. # Example:
  7. # cd /sdcard/Download/BASIC/bwbasic-2.62/
  8. # ash ./vvv.sh
  9. #
  10. cppcheck --std=c89 --enable=all . 1> cppcheck1.txt 2> cppcheck2.txt
  11. sort < cppcheck2.txt > cppcheck3.txt
  12. # EOF