ladybird/Userland/Libraries/LibC/stdio_ext.h

25 lines
408 B
C
Raw Normal View History

/*
* Copyright (c) 2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <stdio.h>
#include <sys/cdefs.h>
__BEGIN_DECLS
2021-05-27 12:47:01 +02:00
size_t __fpending(FILE*);
int __freading(FILE*);
int __fwriting(FILE*);
2021-05-26 10:06:36 +02:00
void __fpurge(FILE*);
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
__END_DECLS