6 lines
156 B
Bash
Executable file
6 lines
156 B
Bash
Executable file
#!/bin/sh
|
|
D="$(dirname "$PWD/$0")"
|
|
#shellcheck disable=SC2048
|
|
#shellcheck disable=SC2086
|
|
uncrustify -c ${D}/uncrustify.cfg $*
|
|
diff -ru "$1" "$1.uncrustify"
|