• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "foo.h"
2 
3 int global_var = 10;
4 
bar_func(void)5 void bar_func(void) {
6   global_var += 100;
7   foo_func(global_var);
8 
9   struct MyStruct *ms;
10   ms->field_var = 10;
11 }
12