aboutsummaryrefslogtreecommitdiff
path: root/pre-commit
blob: da86ca59cc4c971e85cf1f40becabc6c699dd096 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sh
find src/ -name "*.c" -exec indent {} \;
find src/ -name "*.h" -exec indent {} \;
if test -x "`which 'dos2unix'`"
then
  find src/ -name "*.c" -exec dos2unix {} \;
  find src/ -name "*.h" -exec dos2unix {} \;
fi