Is there any library or API that could extract the defined function names from the particular C file.
e.g
Test.c file defined three functions
int firstFunction(int)
{
/*some statements*/
}
int secondFunction(int)
{
/*some statements*/
}
int thirdFunction(int)
{
/*some statements*/
}
/*end of file*/
what I want to get the function names: firstFunction, secondFunction
and thirdFunction.
