All checks were successful
Build (Arch Linux) / build (push) Successful in 3m10s
22 lines
354 B
C++
22 lines
354 B
C++
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <cstdio>
|
|
#include <filesystem>
|
|
#include <span>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace kuiper
|
|
{
|
|
|
|
class io {
|
|
public:
|
|
static std::string read_text_file(const std::filesystem::path& path) noexcept;
|
|
|
|
static std::filesystem::path get_home_dir() noexcept;
|
|
};
|
|
|
|
} // namespace kuiper
|