aboutsummaryrefslogtreecommitdiff
path: root/Tools/fix_code_style_ubuntu.sh
blob: 90ab57b8950dafa8182400e3c3c6e9dc4b2a58d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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	\
    --suffix=none		\
    --lineend=linux		\
    $*
    #--ignore-exclude-errors-x	\
    #--exclude=EASTL		\
    #--align-reference=name	\