|
Melon
A C++ library designed for RadishOS.
|
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 |
| File * | stdOut = new File(stdout) |
| File * | stdErr = new File(stderr) |
| File * | stdIn = new File(stdin) |
Contains functions and classes to interact with the filesystem.
|
strong |
All possible values for File::seek().
| Enumerator | |
|---|---|
| Begin | Beginning of the file. |
| Curr | Current cursor position. |
| End | End of the file. |