2020-04-03 01:10:02 +02:00
|
|
|
#!/usr/bin/env bash
|
2016-09-01 12:32:05 +08:00
|
|
|
# Runs astyle with the full set of formatting options
|
|
|
|
|
astyle \
|
|
|
|
|
--style=otbs \
|
2019-09-25 11:08:21 +08:00
|
|
|
--attach-namespaces \
|
|
|
|
|
--attach-classes \
|
2016-09-01 12:32:05 +08:00
|
|
|
--indent=spaces=4 \
|
|
|
|
|
--convert-tabs \
|
|
|
|
|
--align-pointer=name \
|
|
|
|
|
--align-reference=name \
|
|
|
|
|
--keep-one-line-statements \
|
|
|
|
|
--pad-header \
|
|
|
|
|
--pad-oper \
|
|
|
|
|
"$@"
|