L
Luca Forlizzi
hello
is it strictly conforming to declare a type (struct, union or enum)
in the declaration of a parameter
or of the return type of a function?
For instance:
struct s { int a; float b; } f( int ) ;
int g ( enum e { zero, one, two } x ) { enum e y; return x==y; }
is it strictly conforming to declare a type (struct, union or enum)
in the declaration of a parameter
or of the return type of a function?
For instance:
struct s { int a; float b; } f( int ) ;
int g ( enum e { zero, one, two } x ) { enum e y; return x==y; }