Forked from
wine / wine
162200 commits behind the upstream repository.
-
the header in which it is defined.
the header in which it is defined.
findfunc 317 B
#!/bin/sh
name="$1"
if [ "$name" == "" ] ; then
echo -n 'Function: '
read name;
fi
while [ "$name" != "" ]
do
find $(dirname $0)/../ -name \*.spec | xargs -l1024 grep -i $name
find $(dirname $0)/../ -name \*.[ch] | xargs grep -i "WINAPI[[:space:]]\+$name"
echo -n 'Function: '
read name
done