blob: 5e2a6d1440748d6e946bc333f43a6ec77e5ae94e [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001#!/bin/sh
2
3indent --blank-lines-after-declarations \
4 --blank-lines-after-procedures \
5 --swallow-optional-blank-lines \
6 --blank-lines-before-block-comments \
7 --format-all-comments \
8 --format-first-column-comments \
9 --comment-delimiters-on-blank-lines \
10 --start-left-side-of-comments \
11 --braces-after-if-line \
12 --braces-after-struct-decl-line \
13 --brace-indent 0 \
14 --dont-cuddle-else \
15 --dont-cuddle-do-while \
16 --case-indentation 4 \
17 --case-brace-indentation 0 \
18 --dont-space-special-semicolon \
19 --no-space-after-function-call-names \
20 --no-space-after-casts \
21 --no-space-after-for \
22 --no-space-after-if \
23 --no-space-after-while \
24 --space-after-parentheses \
25 --no-blank-lines-after-commas \
26 --break-function-decl-args \
27 --dont-break-function-decl-args-end \
28 --dont-break-procedure-type \
29 --indent-level 4 \
30 --continue-at-parentheses \
31 "$@"
32