The header comments in my main.c are not being processed by doxygen, however if I rename the file from main.c to for example mainn.c it works very well.
Why is main.c treated differently from an other file name? How do I make Doxygen manage main.c as other .c files?
Or alternatively, what is the best practice here? My purpose in Main.c is to put a short (maybe not so short) product description and use cases in the header documentation.
The header file starts as such:
/**********************************************************//**
* @file main.c
* @author Somebody
* @brief Main function and support functions.
* @details
Then continues with application level things I want to document. Doxygen configuration is the default as it is installed, except for a few items, such as optimised for C, include call charts etc...
Thanks..