Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@kaskavalci
Created September 26, 2015 10:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaskavalci/c123fb4efd2bc910c995 to your computer and use it in GitHub Desktop.
Save kaskavalci/c123fb4efd2bc910c995 to your computer and use it in GitHub Desktop.
freopen("NUL", "a", stdout); //redirect stdout to null again
dup2(stdout_save, STDOUT_FILENO); //restore the previous state of stdout
setvbuf(stdout, NULL, _IONBF, MDT_BUFSIZE); //disable buffer to print to screen instantly
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment