mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-09 23:27:17 +01:00
1271ac8899
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
9 lines
239 B
Bash
Executable File
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
|