From c075f35e1adfb7924004bf0270e64e6a705ff399 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20B=C3=A9ron?= Date: Sun, 2 Jun 2002 21:16:58 +0000 Subject: [PATCH] Show in which file the function is actually implemented, as well as the header in which it is defined. --- tools/findfunc | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/findfunc b/tools/findfunc index 46a985bfc2d..98fd6cebe2a 100755 --- a/tools/findfunc +++ b/tools/findfunc @@ -8,6 +8,7 @@ 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