mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:42:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			403 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			403 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;
 | |
| };
 | |
| 
 | |
| }
 | |
| 
 | |
| ErrorOr<int> serenity_main(Main::Arguments);
 | 
