Bump to doxygen 1.9.2
[platform/upstream/doxygen.git] / testing / 048_showinit.c
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;