ladybird/Userland/Libraries/LibC/stdio_ext.h
Tim Schumacher a3b4e43dd8 LibC: Implement __freading and __fwriting
These functions are used by gnulib (and therefore many GNU utilities)
to provide access to internal details of the stdio FILE structure.
2021-05-30 14:56:50 +01:00

16 lines
209 B
C

/*
* Copyright (c) 2021, the SerenityOS developers
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <stdio.h>
__BEGIN_DECLS
int __freading(FILE*);
int __fwriting(FILE*);
__END_DECLS