dropbear/dropbear_lint.sh
2022-10-24 11:28:47 +08:00

9 lines
114 B
Bash
Executable File

#!/bin/sh
EXITCODE=0
# #ifdef instead of #if
grep '#ifdef DROPBEAR' -I -- *.c *.h && EXITCODE=1
exit $EXITCODE