mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-02-14 03:30:46 +00:00
12 lines
221 B
C++
12 lines
221 B
C++
// SPDX-License-Identifier: MIT
|
|
#pragma once
|
|
#include <FEXCore/fextl/string.h>
|
|
|
|
#include <algorithm>
|
|
|
|
namespace FEX::StringUtil {
|
|
void ltrim(fextl::string &s);
|
|
void rtrim(fextl::string &s);
|
|
void trim(fextl::string &s);
|
|
}
|