Versions Compared

Key

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

...

Code Block
bgColor#FFCCCC
char msg[100];
/* ... */
void error_message(char *error_msg) {
  char msg[80];
  /* ... */
  strcpy(msg, errerror_msg);  /* error_msg is assumed to reference a NTBS of len 99 or less */
  return;
}

...