summaryrefslogtreecommitdiffstats
path: root/scripts/scan_printf.sh
blob: f8c902941a2becf439365b6647870157cd3d730d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

grep \
  --include=\*.{c,cpp,h} \
  --exclude={pstdint,m3d}.h \
  -rnw include code \
  -e '^\s*printf'

if [ $? -eq 0 ]; then
  echo "Debug statement(s) detected. Please uncomment (using single-line comment), remove, or manually add to exclude filter, if appropriate" 
  exit 1
fi