File: astyle.sh

package info (click to toggle)
geos 3.14.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 31,212 kB
  • sloc: cpp: 199,103; xml: 56,065; ansic: 6,162; sh: 287; makefile: 26
file content (13 lines) | stat: -rwxr-xr-x 223 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

DIR=`dirname $0`
${DIR}/astyle/astyle \
  --style=stroustrup \
  --unpad-paren \
  --pad-header \
  --pad-comma \
  --indent=spaces=4 \
  --align-pointer=type \
  --max-code-length=120 \
  --lineend=linux \
  $@