123456789101112131415161718192021222324252627 |
- /*
- * 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);
|