This commit is contained in:
jeanlemotan
2024-07-02 18:12:23 +02:00
commit b344afa9fe
89 changed files with 10568 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#pragma once
#include <EASTL/fixed_string.h>
#include "AbsPath.h"
namespace fs
{
namespace native_utils
{
bool validateCaseSensitiveFilename(const AbsPath& filePath) noexcept;
bool validateCaseSensitiveFolder(const AbsPath& folderPath) noexcept;
typedef eastl::fixed_string<wchar_t, 1024> wstring_t;
typedef eastl::fixed_string<char, 1024> string_t;
wstring_t utf8To16(tl::span<const char> str) noexcept;
string_t utf16To8(tl::span<const wchar_t> str) noexcept;
////////////////////////////////////////////////////////////////////////
}
}