I want to be able to do something like this:
if (Is_Function("helloworld")
// Run code
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Simple answer: no
Complicated answer: yes if debugging symbols are turned on and you write some helper functions to look through the debug symbols. But this is really horrible, buggy (functions can be automatically inlined and will be magically absent from your symbol table), and most of all stops working as soon as you build the release version of the program.
Final answer: no