ccx-utils

Miscellaneous utilities written in C
git clone https://ccx.te2000.cz/git/ccx-utils
Log | Files | Refs

style (386B)


      1 #!/bin/sh
      2 exec astyle \
      3   --style=attach \
      4   --indent=spaces=4 \
      5   --max-code-length=88 \
      6   --attach-closing-while \
      7   --attach-return-type \
      8   --break-one-line-headers \
      9   --add-braces \
     10   --pad-oper \
     11   --pad-comma \
     12   --pad-include \
     13   --pad-header \
     14   --unpad-paren \
     15   --unpad-brackets \
     16   --add-braces \
     17   --indent-switches \
     18   --indent-cases \
     19   --indent-col1-comments \
     20   "$@"
     21