int findme()
{
int input[120];
int make00;
}
I want to find make00 in the program and after finding i want to print the function name which contain this variable. How do I do that PS:I am noob in c.(linux)
int findme()
{
int input[120];
int make00;
}
I want to find make00 in the program and after finding i want to print the function name which contain this variable. How do I do that PS:I am noob in c.(linux)
Have you considered good old bison + flex
? The C/C++ grammar could be very simplified for your needs... I think this is your best option here.