summaryrefslogtreecommitdiffhomepage
path: root/tools/mkfs.hefs.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-20 19:40:30 -0500
committerGitHub <noreply@github.com>2025-11-20 19:40:30 -0500
commitc739255b48b3a5b2e184ca1a637f9f1f95c978ff (patch)
tree3db42241d514cf0e85b3ae6a3a1b17fa7ccf0f3b /tools/mkfs.hefs.cc
parent72dc7188a81052bfeb649eecb420e6b52e2c0c4b (diff)
parentc464e5800961c809c73d4180f8a66885b53c63d7 (diff)
Merge pull request #78 from nekernel-org/devv0.0.6
meta: Codebase improvements on NeKernel.
Diffstat (limited to 'tools/mkfs.hefs.cc')
-rw-r--r--tools/mkfs.hefs.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/mkfs.hefs.cc b/tools/mkfs.hefs.cc
index 692e58f0..1324735d 100644
--- a/tools/mkfs.hefs.cc
+++ b/tools/mkfs.hefs.cc
@@ -1,23 +1,23 @@
-/* -------------------------------------------
+/* ========================================
Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
-------------------------------------------- */
+======================================== */
-#include <tools/libmkfs/openhefs.h>
#include <tools/libmkfs/mkfs.h>
+#include <tools/libmkfs/openhefs.h>
#include <algorithm>
#include <cstdlib>
#include <cstring>
#include <fstream>
#include <limits>
-static uint16_t kVersion = kHeFSVersion;
-static uint16_t kNumericalBase = 10;
+static uint16_t kVersion = kHeFSVersion;
+static uint16_t kNumericalBase = 10;
static size_t kDiskSize = mkfs::detail::gib_cast(4UL);
static std::u8string kDiskLabel;
-static size_t kDiskSectorSz = 512;
+static size_t kDiskSectorSz = 512;
int main(int argc, char** argv) {
if (argc < 2) {