Versions Compared

Key

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

...

EXP12-EX1: If a function cannot fail or if the return value is inconsequential, such as for functions called because of their side effects, the function should be explicitly cast to void to signify programmer intent

Code Block
bgColor#ccccff
(void) strcpy(dst, src);

Risk Assessment

...