Orange/include/Orange/Core/FileSystem.h

12 lines
259 B
C
Raw Normal View History

2022-06-12 16:33:55 +01:00
#pragma once
2022-06-19 03:28:57 +01:00
#include <Orange/Core/Types.h>
2022-06-12 16:33:55 +01:00
#include <Orange/Core/Result.h>
2022-08-05 01:01:41 +01:00
#include <Orange/Core/Span.h>
2022-06-12 16:33:55 +01:00
namespace orange::fs
{
2022-08-05 03:26:36 +01:00
Result<Buffer> OpenFileIntoBuffer(const char* path);
Result<TextBuffer> OpenFileIntoTextBuffer(const char* path);
2022-06-12 16:33:55 +01:00
}