summaryrefslogtreecommitdiff
path: root/tools/check_header.sh
blob: 19d7064aa57b02cdefe939a8a2b73ab070e1dc8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

HEADER="$1"
CC="${2:-gcc}"

echo "#include <$HEADER>" | "${CC}" -E - &>/dev/null
if [ $? -eq 0 ]; then 
    echo 1
else 
    echo 0
fi