Last active
January 18, 2016 07:25
-
-
Save mopsled/25406c2cacef11d57b6d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ea = BeginEA() | |
for function_start in Functions(SegStart(ea), SegEnd(ea)): | |
function_name = GetFunctionName(function_start) | |
if not function_name.startswith('sub_'): | |
continue | |
print function_name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment