aboutsummaryrefslogtreecommitdiff
path: root/pre-commit
blob: 46a7c2a4b19e397553570bf6d6af69d416a4f6b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
# Run this script to indent the GNUnet code.  When run without arguments,
# it indents the ENTIRE src/ tree.  Run with 'src/XXX' to indent the
# src/XXX directory.
if test $# = 0
then
 PATHS=src/
else
 PATHS="$@"
fi
find $PATHS -name "*.c" -exec indent {} \;
find $PATHS -name "*.h" -exec indent {} \;
find $PATHS -name "*.c" -exec indent {} \;
find $PATHS -name "*.h" -exec indent {} \;
find $PATHS -name "*.c" -exec contrib/scripts/removetrailingwhitespace.py {} \;
find $PATHS -name "*.h" -exec contrib/scripts/removetrailingwhitespace.py {} \;
if test -n "`dos2unix -V | head -n1 | awk '{print $1 $2}'`"; then
  find $PATHS -name "*.c" -exec dos2unix {} \;
  find $PATHS -name "*.h" -exec dos2unix {} \;
fi