the code:
#include <stdio.h> /* * \var int iOne * \brief Integer 1 */ /* * \var int iTwo * \brief Integer 2 */ /* * \var int iThree * \brief Integer 3 */ /** * \brief Imitates a sheep. */ void sheep(); /** * \brief Main function for test code */ int main() { int iOne, iTwo, iThree; iOne = 1; iTwo = 2; iThree = 3; printf("%d %d %d", iOne, iTwo, iThree); return 0; } void sheep() { printf("Meeeh"); }
This does not generate descriptions for iOne , iTwo and iThree , although that was my intention. How to fix it?
c objective-c doxygen
Pieter
source share