How do I forward declare FILE * in C? I normally do this using struct MyType;, but naturally this doesn\'t appear to be possible.
FILE *
struct MyType;
If behavi
FILE* is an opaque type. Thus, this should in theory work.
typedef struct FILE_impl_but_including_stdio_h_is_best FILE;