...
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 | ||
---|---|---|
| ||
void (*signal(int, void (*)(int)))(int); |
...
Code Block | ||
---|---|---|
| ||
typedef void fv(int),
typedef void (*pfv)(int);
fv *signal(int, fv *);
pfv signal(int, pfv);
|
...