doxygen/tests/upstream-test-suite/029_hideinit.c

13 lines
237 B
C
Raw Normal View History

2019-03-06 17:39:53 +00:00
// objective: test the \hideinitializer command
// check: 029__hideinit_8c.xml
/** \file */
/** a variable with initializer visible */
int var1 = 10;
/** a variable without initializer visible
* \hideinitializer
*/
int var2 = 20;