diff options
| author | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-03 11:47:01 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-03 11:47:01 +0100 |
| commit | 1f0cdb9f4ad64623ae8434a81fcbe8d37a5c8164 (patch) | |
| tree | fa74f2636035a2923c95f1160fce1db4458ca63c /Private | |
| parent | 21498d72e10628910ee57dac9ab47c8c2794abc2 (diff) | |
Meta: move /Tools/ in /Private/Tools.
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private')
| -rw-r--r-- | Private/Tools/.gitkeep | 0 | ||||
| -rw-r--r-- | Private/Tools/PartTool.cxx | 27 |
2 files changed, 27 insertions, 0 deletions
diff --git a/Private/Tools/.gitkeep b/Private/Tools/.gitkeep new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/Private/Tools/.gitkeep diff --git a/Private/Tools/PartTool.cxx b/Private/Tools/PartTool.cxx new file mode 100644 index 00000000..8c8d52b1 --- /dev/null +++ b/Private/Tools/PartTool.cxx @@ -0,0 +1,27 @@ +/* ------------------------------------------- + + Copyright Mahrouss Logic + + File: PartTool.cpp + Purpose: Partition a drive with a NewFS/EPM filesystem in it. + + Revision History: + + 31/01/24: Added file (amlel) + +------------------------------------------- */ + +/***********************************************************************************/ +/// @file PartTool.cxx +/// @brief NewFS partition program. +/***********************************************************************************/ + +#include <iostream> + +int main() { + std::cout + << "PartTool: build a NewFS partition image from a directory!\n" + << "Copyright Mahrouss Logic, all rights reserved. (INTERNAL TOOL)\n"; + + return 0; +} |
