Versions Compared

Key

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

...

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

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

...