2012-09-28 18:36:46 -04:00
|
|
|
/*******************************************************************************
|
2012-03-11 19:38:48 -04:00
|
|
|
|
2015-02-04 13:17:46 -05:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2012, 2014, 2015.
|
2012-03-11 19:38:48 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This file is part of the Sortix C Library.
|
2012-03-11 19:38:48 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
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.
|
2012-03-11 19:38:48 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
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.
|
2012-03-11 19:38:48 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
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/>.
|
2012-03-11 19:38:48 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
stdio_ext.h
|
|
|
|
Extensions to stdio.h introduced by Solaris and glibc.
|
2012-03-11 19:38:48 -04:00
|
|
|
|
2012-09-28 18:36:46 -04:00
|
|
|
*******************************************************************************/
|
2012-03-11 19:38:48 -04:00
|
|
|
|
|
|
|
#ifndef _STDIO_EXT_H
|
|
|
|
#define _STDIO_EXT_H 1
|
|
|
|
|
2013-10-13 07:04:27 -04:00
|
|
|
#include <sys/cdefs.h>
|
2013-09-23 10:37:33 -04:00
|
|
|
|
2012-03-11 19:38:48 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2015-05-13 12:11:02 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2012-03-11 19:38:48 -04:00
|
|
|
|
2013-09-22 18:47:26 -04:00
|
|
|
size_t __fbufsize(FILE* fp);
|
|
|
|
size_t __fpending(FILE* fp);
|
2015-03-21 12:22:05 -04:00
|
|
|
void __fpurge(FILE* fp);
|
|
|
|
int __freadable(FILE* fp);
|
|
|
|
int __freading(FILE* fp);
|
2015-02-04 13:17:46 -05:00
|
|
|
void __fseterr(FILE* fp);
|
2015-03-21 12:22:05 -04:00
|
|
|
int __fwritable(FILE* fp);
|
|
|
|
int __fwriting(FILE* fp);
|
2012-03-11 19:38:48 -04:00
|
|
|
|
2015-05-13 12:11:02 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|
2012-03-11 19:38:48 -04:00
|
|
|
|
|
|
|
#endif
|