Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ffcccc
langc
int f(int i) {
  /* functionFunction definition */
}

int g(int i) {
  int j = f(i);
  /* ... */
} 

...

Code Block
bgColor#ccccff
langc
static int f(int i) {
  /* functionFunction definition */
}

int g(int i) {
  int j = f(i);
  /* ... */
} 

...