Blame testing/048_showinit.c

Packit Service 50c9f2
// objective: test the \showinit command
Packit Service 50c9f2
// check: 048__showinit_8c.xml
Packit Service 50c9f2
// config: MAX_INITIALIZER_LINES = 0
Packit Service 50c9f2
Packit Service 50c9f2
/** \file */
Packit Service 50c9f2
Packit Service 50c9f2
/** a variable with initializer hidden due to MAX_INITIALIZER_LINES */
Packit Service 50c9f2
int var1 = 10;
Packit Service 50c9f2
Packit Service 50c9f2
/** a variable with initializer visible 
Packit Service 50c9f2
 *  \showinitializer
Packit Service 50c9f2
 */
Packit Service 50c9f2
int var2 = 20;