mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:42:43 +00:00 
			
		
		
		
	 56a2594de7
			
		
	
	
		56a2594de7
		
	
	
	
	
		
			
			There are a number of places that don't have an error propagation path right now, so I've added FIXME's about that.
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			503 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			503 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Max Wipfli <max.wipfli@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/StringView.h>
 | |
| #include <Kernel/KString.h>
 | |
| 
 | |
| namespace Kernel::KLexicalPath {
 | |
| 
 | |
| bool is_absolute(StringView const&);
 | |
| bool is_canonical(StringView const&);
 | |
| StringView basename(StringView const&);
 | |
| StringView dirname(StringView const&);
 | |
| Vector<StringView> parts(StringView const&);
 | |
| 
 | |
| KResultOr<NonnullOwnPtr<KString>> try_join(StringView const&, StringView const&);
 | |
| 
 | |
| }
 |