Hello,

A thing I want to do when importing C code in moose , is to see if a function is Private or Public.
After reading some documentations about C, a private function ( A function that can't be used outside the module in which it's defined) is a function declared with 'Static'. Am I wrong ?

If this is ok, the first thing is:
=> FAMIXFunction > isPublic just check if the function is called outside the module. This does not really correspond to the description above. 

the secong thing is:
=> How can I see if a function is declared with 'static' ?
     For the moment I can have this information in the signatiure of the function. But to retrieve that, I have to parse the string.