Possible Duplicate:
Why is FILE all-caps as in FILE*?
Why is the standard library FILE type written uppercase ?
Is it because of its opaque nature ?
Thank you.
Why is the standard library Thank you. | ||||
|
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
If you look at the naming convention used in C, upper case is typically used for preprocessor macros. My guess is that it originally was implemented as a macro expanding to the concrete type used by the library implementation. | |||
|
feedback
|
|
From here "Strictly speaking, in C the FILE type is a library defined (in stdio.h header) type alias (see typedef keyword). No need to use FILE type as such, only FILE* (pointer to FILE) type. It's (one of;) C language funny idioms. As usually, FILE type alias denotes library defined structure, but don't use its members directly (it's implementation dependent entity)." Also this:
Finally here: | ||||
|
feedback
|
|
It's not an opaque type, it's usually a C struct, but its fields are implementation defined. I guess the uppercase is because history... | |||||
feedback
|
|
Not sure, but note that there are only a few types declared in the standard C library. Probably the Or maybe in primitive C versions it was a macro... think what happened before they invented the
Instead of:
| |||||||
feedback
|
time_t) have lower case names, like the built-in C types. – Ernest Friedman-Hill Sep 8 '11 at 13:25stdin,stdout,stderr.) MaybeFILEwas to differentiate between using a descriptor and using a file handle. – clintp Sep 8 '11 at 13:42