ladybird/Userland/Libraries/LibMain/Main.h
Sam Atkins 25c2a76d10 LibMain: Add the ability to configure the exit code on error
Some POSIX utilities are specified to return a specific value on error,
which is not 1. `Main::set_return_code_for_errors()` lets you set it to
that value.
2022-03-19 11:01:49 -07:00

28 lines
472 B
C++

/*
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Error.h>
#include <AK/Span.h>
#include <AK/StringView.h>
namespace Main {
struct Arguments {
int argc {};
char** argv {};
Span<StringView> strings;
};
int return_code_for_errors();
void set_return_code_for_errors(int);
}
ErrorOr<int> serenity_main(Main::Arguments);