]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/lwIP_MCF5235_GCC/tools/indent.sh
Add FreeRTOS-Plus directory.
[freertos] / FreeRTOS / Demo / lwIP_MCF5235_GCC / tools / indent.sh
1 #!/bin/sh
2
3 indent \
4     --declaration-indentation16 \
5     --procnames-start-lines \
6     --blank-lines-after-declarations \
7     --blank-lines-after-procedures \
8     --break-before-boolean-operator \
9     --braces-after-if-line \
10     --braces-after-struct-decl-line \
11     --brace-indent0 \
12     --case-indentation0 \
13     --no-space-after-function-call-names \
14     --no-space-after-for \
15     --no-space-after-if \
16     --no-space-after-while \
17     --no-space-after-casts \
18     --space-after-parentheses \
19     --dont-format-comments \
20     --indent-level4 \
21     --honour-newlines \
22     --no-tabs \
23     --line-length100 \
24     $@
25