crispy-doom/check-extern.sh
2022-09-27 14:04:16 +03:00

6 lines
155 B
Bash
Executable file

#!/bin/sh
EXTERN="$(grep -e 'extern[^A-Za-z0-9_]' $(find . -name *.c))"
if [ -n "$EXTERN" ] ; then
echo "extern found in .c files:\n${EXTERN}"
exit 1
fi