/** * struct my_little_struct - short description * @a: member named a * @b: member named b * * Longer description */ struct my_struct { int a; int b; /* private: */ int c; }; /** * struct my_big_struct - short description * @a: first member * @b: second member * * Longer description */ struct my_struct { int first; int second; /** * @third: This is a longer description of third * * You can use paragraphs to describe arguments * using this method. */ int third; };