mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-03 10:46:58 +01:00
9 lines
239 B
Text
9 lines
239 B
Text
|
#!/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
|