summaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-19 19:41:49 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-19 19:41:49 +0100
commit73adafc405eae26d9c65809ca5612967b8f534cb (patch)
tree35ac20be06594c133c46dccb983049ebee7fc0a2 /tools
parent712140303d88a0e7e689376c862954811623c5ae (diff)
feat: libsteps: improvements on the steps library.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/steps.cc21
1 files changed, 11 insertions, 10 deletions
diff --git a/tools/steps.cc b/tools/steps.cc
index 551203c..3b61ef2 100644
--- a/tools/steps.cc
+++ b/tools/steps.cc
@@ -4,24 +4,25 @@ Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
------------------------------------------- */
-#include <lib/io/print.hpp>
-#include <libsteps/steps.h>
+#include <libocl/dev/lib/io/print.hpp>
+#include <libsteps/dev/lib/steps.hpp>
+/// =========================================================== ///
/// Use operators from steps namespace to compare steps records.
+/// =========================================================== ///
using namespace steps::operators;
/// =========================================================== ///
/// @brief Main function for running steps on NeKernel.
/// =========================================================== ///
-int main(int argc, char** argv)
-{
- ocl::io::print("steps: running steps for program...\n");
+int main(int argc, char **argv) {
+ ocl::io::print("steps: running steps for program...\n");
+
+ steps::record steps;
- steps::record steps;
+ /// AMLALE: Read steps from file and process them.
- /// AMLALE: Read steps from file and process them.
-
- ocl::io::print("steps: done!\n");
+ ocl::io::print("steps: done.\n");
- return EXIT_SUCCESS;
+ return EXIT_SUCCESS;
} \ No newline at end of file