mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
1f792faf34
This adds KLexicalPath::try_join(). As this cannot be done without allocation, it uses KString and can fail. This patch also uses it at one place. All the other cases of String::formatted("{}/{}", ...) currently rely on the return value being a String, which means they cannot easily be converted to use the new API.
23 lines
485 B
C++
23 lines
485 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&);
|
|
|
|
OwnPtr<KString> try_join(StringView const&, StringView const&);
|
|
|
|
}
|