Files
lightning/libwally-core/tools/uncrustify
2017-02-21 15:15:28 +10:30

9 lines
239 B
Bash
Executable File

#!/bin/sh
# Use uncrustify to reformat the source
if test -z "$1"; then
files=`ls src/*.c src/*.h src/ctest/*.c include/*.h | grep -v src/config.h`
else
files="$*"
fi
uncrustify --replace --no-backup -c tools/uncrustify.cfg $files