repo.or.cz
/
wine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added mapi.h with the definitions needed by the MFC.
[wine.git]
/
tools
/
findfunc
blob
46a985bfc2dacc2cdad49743eb86f91352f4272c
1
#!/bin/sh
2
name
=
"
$1
"
3
if
[
"
$name
"
==
""
] ;
then
4
echo -n
'Function: '
5
read
name
;
6
fi
7
8
while
[
"
$name
"
!=
""
]
9
do
10
find
$
(
dirname
$0
)/
..
/
-name
\
*
.spec |
xargs
-l1024
grep
-i
$name
11
echo -n
'Function: '
12
read
name
13
done