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.

astyle.sh 421B

12345678910111213141516171819202122
  1. #!/bin/sh
  2. # Requires Artistic Style 3.1
  3. # http://astyle.sourceforge.net/
  4. astyle --suffix=none \
  5. --style=java \
  6. --indent=tab \
  7. --indent-switches \
  8. --attach-closing-while \
  9. --pad-oper \
  10. --pad-comma \
  11. --pad-header \
  12. --unpad-paren \
  13. --align-pointer=name \
  14. --align-reference=name \
  15. --break-closing-braces \
  16. --break-one-line-headers \
  17. --attach-return-type \
  18. --attach-return-type-decl \
  19. --close-templates \
  20. $@