mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
a438c4d568
This way, we'll have an easier time changing these paths.
17 lines
275 B
C++
17 lines
275 B
C++
/*
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/LexicalPath.h>
|
|
|
|
namespace Manual {
|
|
|
|
extern LexicalPath const manual_base_path;
|
|
|
|
constexpr StringView const top_level_section_prefix = "man"sv;
|
|
|
|
}
|