Files
mayhem-firmware/format-code.sh
T
gullradriel 3a0ca480b0 conform to clang spec (#2925)
* conform to clang spec
* proper find call
* Update format-code.sh
2026-01-22 15:26:31 +01:00

12 lines
291 B
Bash
Executable File

#!/bin/sh
find firmware/common \
firmware/baseband \
firmware/application \
firmware/test/application \
firmware/test/baseband \
\( -iname '*.h' -o -iname '*.hpp' -o -iname '*.c' -o -iname '*.cpp' \) \
-print0 | \
xargs -0 clang-format-18 -style=file -i