sock/child: remove global variable addrlen.
[obnox/tinyproxy.git] / tinyproxy-indent.sh
1 #!/bin/sh
2
3 # This is a script to mostly indent C code to the Tinyproxy coding
4 # style. It needs GNU indent 2.2.10 or above. In a nutshell, Tinyproxy
5 # uses the K&R style, tab size 8, spaces instead of tabs, wrap at column
6 # 80, space before brackets.
7
8 indent -npro -kr -i8 -ts8 -sob -l80 -ss -cs -cp1 -bs -nlps -nprs -pcs \
9     -saf -sai -saw -sc -cdw -ce -nut -il0 "$@"