Help for this page

Select Code to Download


  1. or download this
        setvbuf( STDOUT, NULL, isatty(1) ? _IOLBF : _IOFBF, BUFSIZE );
    
  2. or download this
        {
            char* bufPref= getenv( "CRTL_STDOUT_BUF_MODE" );
    ...
            }
            setvbuf( STDOUT, NULL, bufMode, BUFSIZE );
        }