I can't understand the following line from minizip's iowin32.h:
void fill_win32_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def));
(Source, outdated but still relevant)
What does the OF macro do?
feedback
|
|
The name In the old times of the 80s and even earlier, a typical declaration for this function looked like this:
That's it. No explicit return type, no declared parameters. The return type is Later versions introduced the
And when ANSI C89 came out, it introduced the declaration of function parameters. Now a good declaration looked like this:
In the time early after 1989, there was a lot of code that needed to combine the two styles. Therefore a macro
From that, both versions are generated easily. Nowadays, this hack is not needed anymore, except for very very old compilers. | |||
|
feedback
|