mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
27 lines
472 B
C++
27 lines
472 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <andreas@ladybird.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);
|