048_showinit.c
Go to the documentation of this file.
1 // objective: test the \showinit command
2 // check: 048__showinit_8c.xml
3 // config: MAX_INITIALIZER_LINES = 0
4 
5 /** \file */
6 
7 /** a variable with initializer hidden due to MAX_INITIALIZER_LINES */
8 int var1 = 10;
9 
10 /** a variable with initializer visible
11  * \showinitializer
12  */
13 int var2 = 20;
int var2
Definition: 048_showinit.c:13
int var1
Definition: 048_showinit.c:8