#!/bin/sh
#
#  inStdHdrPath - return true if the directory is in the list of standard
#                 include paths.


stdPaths=`getStdHdrPaths`

inPath="false"

for i in $stdPaths
do
	if [ "$i" != "$1" ]
	then
		inPath="false"
	else
		inPath="true"
		exit 0
	fi
done

exit 1
