Hi all,
I want to get list of all functions that are defined in the current C
code, for example if I have the code below:
int f(int c, int d){
int a = 10;
int b = 12;
return c+a;
}
int g(void){
...
...
}
int main(){
}
I need a function that give me *f* and *g*.
thanks,
--
Shirvani Ali
I want to get list of all functions that are defined in the current C
code, for example if I have the code below:
int f(int c, int d){
int a = 10;
int b = 12;
return c+a;
}
int g(void){
...
...
}
int main(){
}
I need a function that give me *f* and *g*.
thanks,
--
Shirvani Ali
Comment