From 420908538bd49126b447dd6059af363195c41e1e Mon Sep 17 00:00:00 2001 From: solar Date: Tue, 11 Jul 2006 06:22:25 +0000 Subject: [PATCH] Added a TODO about wide orientation reset. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@249 546481bc-9713-0410-bf18-d3337bbf4a3e --- functions/stdio/freopen.c | 1 + 1 file changed, 1 insertion(+) 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 ); -- 2.47.2