English
Language : 

CC78K0S Datasheet, PDF (66/520 Pages) NEC – C Compiler Ver.1.30 or Later Language
CHAPTER 3 DECLARATION OF TYPES AND STORAGE CLASSES
typedef names may be used to facilitate program reading. For example, the following three declarations for the
function signal all specify the same type as the first declaration that does not use typedef.
typedef void fv(int);
typedef void (*pfv)(int);
void(*signal(int,void(*)(int)))(int);
fv *signal(int,fv *);
pfv signal(int,pfv);
66
User’s Manual U14872EJ1V0UM