1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
/* PLACE ONE */
do{
int x = 1; int y = 2;
if(condition1)
{
function_one(param1, param2, x, y, param3);
}
//some other code here
if(condition2)
{
function_one(NULL, NULL, x, y, NULL);
}
}
while(condition0)
/* PLACE TWO */
do{
int x = 1; int y = 2;
if(condition1)
{
function_two(param4, param5, param6, param7, x, y, param8, param9);
}
//some other code here
if(condition2)
{
function_two(NULL, NULL, NULL, NULL, x, y, NULL, NULL);
}
}
while(condition0)
|