J
Jonathan Turkanis
Can the syntax for function types be used within a function type
declaration as a synonym for the corresponding pointer-to-function
type?
For instance, is
int(char(long))
a valid type equivalent to
int(char(*)(long)),
or is it nonsense?
Jonathan
declaration as a synonym for the corresponding pointer-to-function
type?
For instance, is
int(char(long))
a valid type equivalent to
int(char(*)(long)),
or is it nonsense?
Jonathan