mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
17 lines
231 B
C
17 lines
231 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*);
|
|
void __fpurge(FILE*);
|
|
|
|
__END_DECLS
|