Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following declaration of the signal() function does not make use of typedef names and is consequently hard is difficult to read and comprehend.

Code Block
bgColor#FFcccc
void (*signal(int, void (*)(int)))(int);

...

This compliant solution makes use of typedef names type definitions to specify exactly the same type as in the non-compliant code example.

...