Is FILE in C language a keyword?

problem description

Is FILE in

C a keyword? I feel like a structure, but I"m curious. If it"s a structure, why not write it as struct FILE? Wouldn"t it be wrong to write FILE directly?

C cPP
Apr.18,2022

is a custom type:

typedef struct _ iobuf FILE;

where iobuf is the structure

Menu