2013-03-20 17:20:22 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2015-11-20 17:54:30 -05:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2013, 2015.
|
2013-03-20 17:20:22 -04:00
|
|
|
|
|
|
|
This file is part of the Sortix C Library.
|
|
|
|
|
|
|
|
The Sortix C Library is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
The Sortix C Library is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2013-06-25 07:58:12 -04:00
|
|
|
stdio/freopen.cpp
|
2013-03-20 17:20:22 -04:00
|
|
|
Changes the file with which a FILE is associated.
|
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "fdio.h"
|
|
|
|
|
|
|
|
extern "C" FILE* freopen(const char* path, const char* mode, FILE* fp)
|
|
|
|
{
|
|
|
|
if ( !path )
|
2015-11-20 17:54:30 -05:00
|
|
|
return errno = EBADF, (FILE*) NULL;
|
2013-03-20 17:20:22 -04:00
|
|
|
|
|
|
|
// Uninstall the current backend of the FILE (after flushing) and return the
|
|
|
|
// FILE to the default state (like a new object from fnewfile).
|
|
|
|
fshutdown(fp);
|
|
|
|
|
|
|
|
// Attempt to open the new path and install that into our FILE object.
|
2014-02-27 14:57:14 -05:00
|
|
|
if ( !fdio_install_path(fp, path, mode) )
|
2013-03-20 17:20:22 -04:00
|
|
|
{
|
|
|
|
fclose(fp);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fp;
|
|
|
|
}
|