Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: made the change I suggested

...

Code Block
bgColor#FFcccc
char *temp;
char copy[16];

temp = getenv("TEST_ENV");
if (temp != NULL) {
  strcpy(buffcopy, temp);
}

Compliant Solution

...