in reply to Re^2: parsing C functions.
in thread parsing C functions.
No, its like
int main(){
printf("In - %s%d%s\n",__FILE__,__LINE__,__func__);
....do something here ....
printf("Out -%s%d%s\n",__FILE__,__LINE__,__func__);
return 0;
}
in all the functions in the large code base containing at least 10000 functions like the Linux Kernel source ....
Regards,
Onkar