mirror of
https://github.com/LizardByte/Sunshine.git
synced 2026-02-06 16:45:34 +00:00
15 lines
287 B
C++
15 lines
287 B
C++
/**
|
|
* @file file_handler.h
|
|
* @brief Header file for file handling functions.
|
|
*/
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace file_handler {
|
|
std::string
|
|
read_file(const char *path);
|
|
int
|
|
write_file(const char *path, const std::string_view &contents);
|
|
} // namespace file_handler
|