Versions Compared

Key

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

...

Non-Compliant Code Example

The following declarations declaration of the signal function sfails does not make use of typedef names and is consequently hard to read.

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

...

Code Block
bgColor#ccccff
typedef void fv(int), 
typedef void (*pfv)(int);
fv *signal(int, fv *);
pfv signal(int, pfv);

...