9 lines
215 B
C
9 lines
215 B
C
void myFuncSimple( void (*funcParameter)(void) )
|
|
{
|
|
/* ... */
|
|
|
|
(*funcParameter)(); /* Call the passed function. */
|
|
funcParameter(); /* Same as above with slight different syntax. */
|
|
|
|
/* ... */
|
|
}
|