2021-05-26 08:39:19 +02:00
|
|
|
/*
|
2021-10-04 11:54:23 +02:00
|
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
2021-05-26 08:39:19 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2022-08-16 01:57:43 +10:00
|
|
|
#include <sys/cdefs.h>
|
2021-05-26 08:39:19 +02:00
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
2021-05-27 12:47:01 +02:00
|
|
|
size_t __fpending(FILE*);
|
2021-05-26 08:39:19 +02:00
|
|
|
int __freading(FILE*);
|
|
|
|
|
int __fwriting(FILE*);
|
2021-05-26 10:06:36 +02:00
|
|
|
void __fpurge(FILE*);
|
2021-05-26 08:39:19 +02:00
|
|
|
|
2021-11-07 17:19:16 +01:00
|
|
|
size_t __freadahead(FILE*);
|
2021-11-07 17:09:51 +01:00
|
|
|
char const* __freadptr(FILE*, size_t*);
|
2021-11-07 17:26:50 +01:00
|
|
|
void __freadptrinc(FILE*, size_t);
|
2021-05-26 12:34:05 +02:00
|
|
|
void __fseterr(FILE*);
|
2021-11-07 17:09:51 +01:00
|
|
|
|
2021-05-26 08:39:19 +02:00
|
|
|
__END_DECLS
|