stdio_ext.h 232 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2021, the SerenityOS developers.
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <stdio.h>
  8. __BEGIN_DECLS
  9. int __freading(FILE*);
  10. int __fwriting(FILE*);
  11. void __fpurge(FILE*);
  12. __END_DECLS