MeshLib C Docs
Loading...
Searching...
No Matches
iostream.h File Reference
#include <MRCMisc/exports.h>

Go to the source code of this file.

Typedefs

typedef struct MR_std_ostream MR_std_ostream
 A C++ output stream.
 
typedef struct MR_std_istream MR_std_istream
 A C++ input stream.
 

Functions

MRC_API MR_std_ostreamMR_GetStdCout (void)
 
MRC_API MR_std_ostreamMR_GetStdCerr (void)
 
MRC_API MR_std_ostreamMR_GetStdClog (void)
 
MRC_API MR_std_istreamMR_GetStdCin (void)
 

Typedef Documentation

◆ MR_std_istream

A C++ input stream.

◆ MR_std_ostream

A C++ output stream.

Function Documentation

◆ MR_GetStdCerr()

MRC_API MR_std_ostream * MR_GetStdCerr ( void )

Returns the stderr stream, buffered. The returned pointer will never be null. It is non-owning, do NOT destroy it.

◆ MR_GetStdCin()

MRC_API MR_std_istream * MR_GetStdCin ( void )

Returns the stdin stream. The returned pointer will never be null. It is non-owning, do NOT destroy it.

◆ MR_GetStdClog()

MRC_API MR_std_ostream * MR_GetStdClog ( void )

Returns the stderr stream, unbuffered. The returned pointer will never be null. It is non-owning, do NOT destroy it.

◆ MR_GetStdCout()

MRC_API MR_std_ostream * MR_GetStdCout ( void )

Returns the stdout stream. The returned pointer will never be null. It is non-owning, do NOT destroy it.