if a function has no parameters, it can be declared as:<br><br>    int func();<br>    int func(void);<br><br>In my coding standard checking tool, I want to determine whether a function has a `void` specifier. How to check this ? All I get is a `FunctionDecl`.<br><br>Thanks.<br><br>