abcd12344445555
Programmer
Hi,
Is that a function definition? Why there are 2 sets of '()' in the definition and in the call?
What's the name of this kind of definition?
Definition:
Call:
Thanks.
Is that a function definition? Why there are 2 sets of '()' in the definition and in the call?
What's the name of this kind of definition?
Definition:
Code:
static inline void func(pu) ( void )
{
printf( "%s", s_msg_usage );
}
Call:
Code:
func(pu)();
Thanks.