Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added compliant solution to the setbuf() example.

...

In this compliant solution, function setvbuf is used instead.

Code Block
bgColor#ccccFF
langc
  FILE *file;
/* Setup file */
setvbuf(file, NULL, _IONBF, BUFSIZ);
/* ... */

Noncompliant Code Example

...