13 lines
316 B
C++
13 lines
316 B
C++
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include <string>
|
|
|
|
void initPaths(const char* programPath);
|
|
const std::filesystem::path& sharedPath();
|
|
bool endsWith(const std::string& string, const std::string& query);
|
|
|