2012-10-19 20:02:58 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
2018-12-16 16:40:41 -08:00
|
|
|
# formatting script using the astyle tool
|
|
|
|
|
# use -A2 (java style braces)
|
|
|
|
|
# 4 space indents, convert tabs to spaces
|
2020-05-16 15:33:00 -07:00
|
|
|
#
|
|
|
|
|
# switches documented at http://astyle.sourceforge.net/astyle.html
|
|
|
|
|
#
|
|
|
|
|
# optional switches to note:
|
|
|
|
|
# --add-braces will add { } for every conditional, including one liners
|
2018-12-16 16:40:41 -08:00
|
|
|
|
2020-05-16 15:33:00 -07:00
|
|
|
astyle -A2 --align-pointer=name --indent=spaces=4 --indent-switches \
|
|
|
|
|
--keep-one-line-blocks --pad-header --convert-tabs $@
|