From: solar Date: Tue, 11 Jul 2006 06:22:25 +0000 (+0000) Subject: Added a TODO about wide orientation reset. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=420908538bd49126b447dd6059af363195c41e1e;p=fw%2Fpdclib Added a TODO about wide orientation reset. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@249 546481bc-9713-0410-bf18-d3337bbf4a3e --- diff --git a/functions/stdio/freopen.c b/functions/stdio/freopen.c index be4b95e..13992de 100644 --- a/functions/stdio/freopen.c +++ b/functions/stdio/freopen.c @@ -25,6 +25,7 @@ struct _PDCLIB_file_t * freopen( const char * _PDCLIB_restrict filename, const c { /* FIXME: This is ad-hoc (to make the vprintf() testdriver work), and must be checked. */ /* FIXME: If filename is NULL, change mode. */ + /* TODO: This function can change wide orientation of a stream */ if ( filename == NULL ) return NULL; if ( stream->status & _PDCLIB_WROTELAST ) fflush( stream ); if ( stream->status & _PDCLIB_LIBBUFFER ) free( stream->buffer );