summaryrefslogtreecommitdiff
path: root/lint.sh
blob: 5264112cf008e6baec00fe6bef328fabbce4b501 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh


if ! command -v splint 2> /dev/null
then
	echo "Please install splint (http://splint.org/)!"
	exit 1
fi

find . -type f -iname '*.c' | xargs splint