Rudiments
stdio.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
4#ifndef RUDIMENTS_STDIO_H
5#define RUDIMENTS_STDIO_H
6
7#include <rudiments/filedescriptor.h>
8
18class RUDIMENTS_DLLSPEC stdiofiledescriptor : public filedescriptor {
19 public:
22 bool flush();
23
24 #include <rudiments/private/stdio.h>
25};
26
27extern RUDIMENTS_DLLSPEC stdiofiledescriptor stdinput;
28extern RUDIMENTS_DLLSPEC stdiofiledescriptor stdoutput;
29extern RUDIMENTS_DLLSPEC stdiofiledescriptor stderror;
30
31#endif
Definition filedescriptor.h:13
Definition stdio.h:18