mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
47 lines
1.7 KiB
C++
47 lines
1.7 KiB
C++
|
/*******************************************************************************
|
||
|
|
||
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2013.
|
||
|
|
||
|
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/>.
|
||
|
|
||
|
fresetfile.cpp
|
||
|
After a FILE has been shut down, returns all fields to their default state.
|
||
|
|
||
|
*******************************************************************************/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
// Note: This function preserves a few parts of the fields - this means that if
|
||
|
// you are using this to reset a fresh FILE object, you should memset it
|
||
|
// to zeroes first to avoid problems.
|
||
|
extern "C" void fresetfile(FILE* fp)
|
||
|
{
|
||
|
FILE* prev = fp->prev;
|
||
|
FILE* next = fp->next;
|
||
|
void* free_user = fp->free_user;
|
||
|
void (*free_func)(void*, FILE*) = fp->free_func;
|
||
|
int kept_flags = fp->flags & (_FILE_REGISTERED | 0);
|
||
|
memset(fp, 0, sizeof(*fp));
|
||
|
fp->flags = kept_flags | _FILE_AUTO_LOCK;
|
||
|
fp->buffer_mode = -1;
|
||
|
fp->free_user = free_user;
|
||
|
fp->free_func = free_func;
|
||
|
fp->prev = prev;
|
||
|
fp->next = next;
|
||
|
}
|