summaryrefslogtreecommitdiffhomepage
path: root/tooling/fsck.hefs.cc
blob: 9d67aa381ae9a805fc280dacc25756931c0f3eb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -------------------------------------------

  Copyright (C) 2025, Amlal El Mahrouss, all rights reserved.

------------------------------------------- */

#include <tooling/hefs.h>
#include <tooling/mkfs.h>
#include <cstdlib>

int main(int argc, char** argv) {
  if (argc < 2) {
    mkfs::console_out() << "fsck: hefs: usage: fsck.hefs i <input_device>" << "\n";
    return EXIT_FAILURE;
  }

  (void) argv;

  return EXIT_SUCCESS;
}