Rudiments
stdio.h
1 // Copyright (c) 2013 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 
18 class RUDIMENTS_DLLSPEC stdiofiledescriptor : public filedescriptor {
19  public:
22  bool flush();
23 
24  #include <rudiments/private/stdio.h>
25 };
26 
27 extern RUDIMENTS_DLLSPEC stdiofiledescriptor stdinput;
28 extern RUDIMENTS_DLLSPEC stdiofiledescriptor stdoutput;
29 extern RUDIMENTS_DLLSPEC stdiofiledescriptor stderror;
30 
31 #endif
Definition: filedescriptor.h:13
Definition: stdio.h:18