summaryrefslogtreecommitdiffhomepage
path: root/public/tools/open/src/CommandLine.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-23 19:13:48 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-23 19:15:17 +0100
commita13e1c0911c0627184bc38f18c7fdda64447b3ad (patch)
tree073a62c09bf216e85a3f310376640fa1805147f9 /public/tools/open/src/CommandLine.cc
parent149fa096eb306d03686b3b67e813cf1a78e08cd0 (diff)
meta(kernel): Reworked repository's filesystem structure.
Removing useless parts of the project too. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'public/tools/open/src/CommandLine.cc')
-rw-r--r--public/tools/open/src/CommandLine.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/public/tools/open/src/CommandLine.cc b/public/tools/open/src/CommandLine.cc
index a2439e40..746622fa 100644
--- a/public/tools/open/src/CommandLine.cc
+++ b/public/tools/open/src/CommandLine.cc
@@ -4,7 +4,7 @@
* Copyright (c) 2024 Amlal EL Mahrouss
*/
-#include <LibSCI/SCI.h>
+#include <SCIKit/SCI.h>
/// @brief This program opens an application from **OPEN_APP_BASE_PATH**
@@ -21,10 +21,10 @@ int main(int argc, char* argv[])
{
if (MmStrCmp(argv[i], OPEN_APP_HELP_FLAG) == 0)
{
- ConOut(nullptr, "open: Open Tool.\n");
- ConOut(nullptr, "open: © Amlal EL Mahrouss, All rights reserved.\n");
+ PrintOut(nullptr, "open: Open Tool.\n");
+ PrintOut(nullptr, "open: © Amlal EL Mahrouss, All rights reserved.\n");
- ConOut(nullptr, "open: %s: Application is taken as input (opens a PEF/PE32+/ELF program depending on architecture).\n", OPEN_APP_APP_FLAG);
+ PrintOut(nullptr, "open: %s: Application is taken as input (opens a PEF/PE32+/ELF program depending on architecture).\n", OPEN_APP_APP_FLAG);
return EXIT_SUCCESS;
}