imranhbr wrote:
> 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.
>   
If you want the name from inside the program you may want to look at the 
documentation on your compiler.  Since you haven't said what you want to 
DO with the names, I guess I'll leave further comment for later.

Reply via email to