crispy-doom/check-extern.sh

7 lines
155 B
Bash
Raw Permalink Normal View History

2022-09-06 15:00:18 +03:00
#!/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