Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / scripts / winders / locate_function_in_lib.sh
diff --git a/scripts/winders/locate_function_in_lib.sh b/scripts/winders/locate_function_in_lib.sh
deleted file mode 100644 (file)
index 6a49c1e..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-filename="$1"; shift
-function_name="$1"; shift
-
-good_path="$(cygpath -w -s $filename)"
-
-#/exports 
-dumpbin /all $good_path | grep -q -i "$function_name"
-if [ $? -eq 0 ]; then
-  echo "Found $function_name in $filename"
-fi
-
-
-