You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
struct somestruct *
|
|
mult2(int val);
|
|
|
|
somestruct *
|
|
dumb_func(int val);
|
|
|
|
|
|
|
|
struct somestruct *
|
|
mult2(int val)
|
|
{
|
|
int a;
|
|
|
|
a = val + (foo * bar);
|
|
|
|
a = val + (bar);
|
|
|
|
a = val + (CFoo::bar_t)7;
|
|
|
|
a = val + (myfoo.size);
|
|
|
|
return(NULL);
|
|
}
|
|
|