mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
c075f35e1a
the header in which it is defined.
14 lines
317 B
Bash
Executable file
14 lines
317 B
Bash
Executable file
#!/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
|