mirror of
https://github.com/labwc/labwc.git
synced 2025-11-03 09:01:51 -05:00
13 lines
209 B
Bash
Executable file
13 lines
209 B
Bash
Executable file
#!/bin/bash
|
|
|
|
options="\
|
|
--enable=all \
|
|
--suppress=missingInclude \
|
|
--suppress=unusedFunction \
|
|
--suppress=unmatchedSuppression \
|
|
"
|
|
|
|
for f in $(find src/ -name "*.c"); do
|
|
cppcheck ${options} "${f}"
|
|
done
|
|
|