Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: small example format change

...

Code Block
bgColor#ffcccc
langc
char *p = /* Initialize, may or may not be NULL */

if (p || (p = (char *) malloc(BUF_SIZE)) ) {
  /* Do stuff with p */
  free(p);
  p = NULL;
}
 else {
  /* Handle malloc() error */
  return;
}

...