Melon
A C++ library designed for RadishOS.
Loading...
Searching...
No Matches
Melon::FileSystem Namespace Reference

Contains functions and classes to interact with the filesystem. More...

Classes

class  File
 Representation of a file stream. More...

Enumerations

enum class  SeekOrigin { Begin = SEEK_SET , Curr = SEEK_CUR , End = SEEK_END }
 All possible values for File::seek(). More...

Variables

constexpr int EndOfFile = EOF
FilestdOut = new File(stdout)
FilestdErr = new File(stderr)
FilestdIn = new File(stdin)

Detailed Description

Contains functions and classes to interact with the filesystem.

Enumeration Type Documentation

◆ SeekOrigin

enum class Melon::FileSystem::SeekOrigin
strong

All possible values for File::seek().

Enumerator
Begin 

Beginning of the file.

Curr 

Current cursor position.

End 

End of the file.