#pragma once #include #include "AbsPath.h" namespace fs { namespace native_utils { bool validateCaseSensitiveFilename(const AbsPath& filePath) noexcept; bool validateCaseSensitiveFolder(const AbsPath& folderPath) noexcept; typedef eastl::fixed_string wstring_t; typedef eastl::fixed_string string_t; wstring_t utf8To16(tl::span str) noexcept; string_t utf16To8(tl::span str) noexcept; //////////////////////////////////////////////////////////////////////// } }