nice new tool to show version of feisty meow
[feisty_meow.git] / scripts / buildor / vistu_locate_function.sh
1 #!/bin/bash
2
3 filename="$1"; shift
4 function_name="$1"; shift
5
6 good_path="$(cygpath -w -s $filename)"
7
8 #/exports 
9 dumpbin /all $good_path | grep -q -i "$function_name"
10 if [ $? -eq 0 ]; then
11   echo "Found $function_name in $filename"
12 fi
13
14
15