Thu, 01 Dec 2011 17:04:30 +0100
Added line buffer (and warning message - there is no regexp parser, though)
/* * stream.c * * Created on: 20.09.2011 * Author: Mike */ #include "stream.h" void close_stdout() { #ifdef _WIN32 _STREAM_STDOUT = dup(STDOUT_FILENO); #endif freopen("/dev/null", "w", stdout); } void reopen_stdout() { #ifdef _WIN32 close(STDOUT_FILENO); fdopen(dup(_STREAM_STDOUT), "wa"); close(_STREAM_STDOUT); #else freopen("/dev/stdout", "w", stdout); #endif }