summaryrefslogtreecommitdiffhomepage
path: root/public/tools/manual/src/CommandLine.cc
blob: 0704384a90c3299a0b162486b99694fb30819745 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <libSystem/System.h>

SInt32 _NeMain(SInt32 argc, Char* argv[]) {
  SCI_UNUSED(argc);
  SCI_UNUSED(argv);

  if (argc < 2) {
    PrintOut(nullptr, "HELP: manual <tutorial_name>\n");
    return EXIT_FAILURE;
  }

  return EXIT_SUCCESS;
}