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.
22 lines
511 B
22 lines
511 B
#!/bin/sh |
|
astyle \ |
|
--style=linux \ |
|
--indent=force-tab=8 \ |
|
--indent-cases \ |
|
--indent-preprocessor \ |
|
--break-blocks=all \ |
|
--pad-oper \ |
|
--pad-header \ |
|
--unpad-paren \ |
|
--keep-one-line-blocks \ |
|
--keep-one-line-statements \ |
|
--align-pointer=name \ |
|
--align-reference=name \ |
|
--suffix=none \ |
|
--ignore-exclude-errors-x \ |
|
--lineend=linux \ |
|
--exclude=EASTL \ |
|
--add-brackets \ |
|
--max-code-length=120 \ |
|
--preserve-date \ |
|
$*
|
|
|