blob: 2af1ab41fae0397fa06b47cbaa6b37c834f5a437 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# -npro Do no read the '.indent.pro' files.
# -kr Use K&R formatting rules
# -i8 Set indentation level to 8 spaces.
# -ts8 Set tab size to 8 spaces
# -sob Swallow optional blank lines.
# -l80 Set the maximum line length at 80 characters.
# -ss On one-line for and while statments, force a blank before the semicolon
# -ncs Do not put a space after cast operators.
indent -npro -kr -i8 -ts8 -sob -l80 -ss -ncs "$@"
|