Versions Compared

Key

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

...

Code Block
bgColor#ccccff
/* file_b.c source file */
int func(int, int, int);

func(1, 2, 3);

VOID DCL14-C. Do not make assumptions about the order of global variable initialization across translation units, shows how to use header files to accomplish this same goal in a more maintainable fashion.

...