static void llist_dtor(void *user, void *element)
{
(void)user;
(void)element;
/* Do nothing */
}
Is it no-operation function? Then why is casting done? Is it ok to pass NULL as one of its parameters?
Is it no-operation function? Then why is casting done? Is it ok to pass NULL as one of its parameters? |
||||
|
|
|
That's indeed a no-op. The casts to You can pass |
||||
|
|
|
Yes, this is a no-op function. The casting is a common trick to prevent the compiler complaining about unused parameters. |
|||
|
|
|
Yes, this is a no-op function and However, if it were C++ instead of C, I would probably write it little differently as
Note that the variable names are commented out. |
|||||||
|
|
That is not no-op. Like that you tell the compiler to ignore those two arguments. |
|||
|
|