mirror of
https://github.com/pound-emu/pound.git
synced 2025-12-15 10:36:59 +00:00
Major project restructuring
Remove unecessary files and made the tree much more cleaner. Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
parent
13b2e741b9
commit
05c4f7025f
62 changed files with 2698 additions and 2453 deletions
23
core/common/StringUtil.h
Normal file
23
core/common/StringUtil.h
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
// Copyright 2025 Xenon Emulator Project. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <algorithm>
|
||||
#include <cctype>
|
||||
#include <string>
|
||||
#include <string_view>
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <Windows.h>
|
||||
#else
|
||||
#include <filesystem>
|
||||
#endif
|
||||
|
||||
namespace Base
|
||||
{
|
||||
|
||||
[[nodiscard]] std::string UTF16ToUTF8(const std::wstring_view& input);
|
||||
[[nodiscard]] std::wstring UTF8ToUTF16W(const std::string_view& str);
|
||||
[[nodiscard]] std::string ToLower(const std::string& str);
|
||||
|
||||
} // namespace Base
|
||||
Loading…
Add table
Add a link
Reference in a new issue