#define START ((void (**)(int)) 0x0fff)
*START = &fun_foo();
I haven’t seen this before. What is happening here? Is void (**)(int) a function pointer?
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.
void (**)(int)is a pointer to a pointer to a function that takes anintand returns nothing.So
STARTis apointer to a function pointer, and*STARTis the actual function pointer which is set to point tofun_foo.