Melon
A C++ library designed for RadishOS.
Loading...
Searching...
No Matches
StdStreams.hpp
1#pragma once
2
3#include "File.hpp"
4
5namespace Melon::FileSystem
6{
7 extern File *stdOut;
8 extern File *stdErr;
9 extern File *stdIn;
10} // namespace Melon::FileSystem
Representation of a file stream.
Definition File.hpp:20
Contains functions and classes to interact with the filesystem.
Definition FileSystem.hpp:5