From: solar Date: Tue, 11 Jul 2006 06:22:25 +0000 (+0000) Subject: Added a TODO about wide orientation reset. X-Git-Tag: v0.5~144 X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=f2dbc6a41d71a685ce2a69e83eaa5172fff5066a Added a TODO about wide orientation reset. --- 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 );