How can I get Doxygen to show structs instead of classes

c, doxygen

Solution

Try

OPTIMIZE_OUTPUT_FOR_C=YES

in your Doxyfile, see if that's more to liking.

Problem

Doxygen seems to expect C++ and lists my structs as "classes" in the HTML output. How can I get Doxygen to process my source as C not C++?

Original source