first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / scripts / winders / locate_function_in_lib.sh
1 #!/bin/bash
2
3 filename="$1"; shift
4 function_name="$1"; shift
5
6 good_path="$(short_path $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