mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-25 06:09:50 +00:00
7 lines
156 B
Bash
Executable File
7 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"
|