mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-31 11:17:52 -05:00
14 lines
263 B
C++
14 lines
263 B
C++
#ifndef STRING_UTILS_H
|
|
#define STRING_UTILS_H
|
|
|
|
#include <string>
|
|
|
|
class StringUtils
|
|
{
|
|
public:
|
|
static const char* wchar_to_char(const wchar_t* pwchar);
|
|
static const std::string remove_null_terminating_chars(std::string input);
|
|
};
|
|
|
|
#endif // STRING_UTILS_H
|