mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-09 15:18:09 +01:00
9 lines
239 B
Plaintext
9 lines
239 B
Plaintext
|
#!/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
|