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.
 
 
 
 
 
 

15 lines
379 B

  1. REM Filename: 00INDENT.BAT
  2. REM Purpose: format source code of one file
  3. REM Author: Howard Wulf, AF5NE
  4. REM Date: 2015-01-29
  5. REM Uasage: implementation defined
  6. REM Example:
  7. REM CD \sdcard\Download\BASIC\bwbasic-2.62\
  8. REM 01INDENT.BAT bwbasic.c
  9. REM
  10. indent.exe %1 -bl -ncdb -nfc1 -nce -ei
  11. xtabs.exe %1 to TEMP.TMP
  12. del %1
  13. ren TEMP.TMP %1
  14. REM EOF